|
Search: id:A159678
|
|
|
| A159678 |
|
The general form of the recurrences are the a(j), b(j) and n(j) solutions of the 2 equations problem: 7*n(j)+1=a(j)*a(j) and 9*n(j)+1=b(j)*b(j) with positiv integer numbers. |
|
+0 3
|
|
| 1, 17, 271, 4319, 68833, 1097009, 17483311, 278635967, 4440692161, 70772438609, 1127918325583, 17975920770719, 286486814005921, 4565813103324017, 72766522839178351, 1159698552323529599, 18482410314337295233, 294558866477073194129, 4694459453318833810831
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
FORMULA
|
The a(j) recurrence is a(1)=1; a(2)=15; a(t+2)=16*a(t+1)-a(t)
resulting in terms 1, 15, 239, 3809
The b(j) recurrence is b(1)=1; b(2)=17; b(t+2)=16*b(t+1)-b(t)
resulting in terms 1, 17, 271, 4319 as listed above
The n(j) recurrence is n(0)=n(1)=0; n(2)=32; n(t+3)=255*(n(t+2)-n(t+1))+n(t)
resulting in terms 0, 0, 32, 8160, 2072640
|
|
MAPLE
|
for a from 1 by 2 to 100000 do b:=sqrt((9*a*a-2)/7): if (trunc(b)=b) then
n:=(a*a-1)/7: La:=[op(La), a]:Lb:=[op(Lb), b]:Ln:=[op(Ln), n]: end if: end do:
|
|
PROGRAM
|
(Other) sage: [(lucas_number2(n, 16, 1)-lucas_number2(n-1, 16, 1))/14 for n in xrange(1, 20)]# [From Zerinvary Lajos (zerinvarylajos(AT)yahoo.com), Nov 10 2009]
|
|
CROSSREFS
|
A157456
Sequence in context: A135214 A090380 A142898 this_sequence A097830 A131865 A031417
Adjacent sequences: A159675 A159676 A159677 this_sequence A159679 A159680 A159681
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Paul Weisenhorn (paulweisenhorn(AT)online.de), Apr 19 2009
|
|
EXTENSIONS
|
More terms from Zerinvary Lajos (zerinvarylajos(AT)yahoo.com), Nov 10 2009
|
|
|
Search completed in 0.002 seconds
|