login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A097705 a(n) = 4*a(n-1) + 17*a(n-2), a(1)=1, a(2)=4. 2
1, 4, 33, 200, 1361, 8844, 58513, 384400, 2532321, 16664084, 109705793, 722112600, 4753448881, 31289709724, 205967469873, 1355794944800, 8924626767041, 58747021129764, 386706739558753, 2545526317441000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is one of only two Lucas-type sequences whose 8th term is a square.
The other one is A006131. - Michel Marcus, Dec 07 2012
LINKS
A. Bremner and N. Tzanakis, Lucas sequences whose 8th term is a square
FORMULA
G.f.: 1/(1-4x-17x^2).
MAPLE
f:= gfun:-rectoproc({a(n) = 4*a(n-1) + 17*a(n-2), a(1)=1, a(2)=4}, a(n), remember): map(f, [$0..20]); # Georg Fischer, Jun 18 2021
PROG
(Maxima)
a[0]:0$
a[1]:1$
a[n]:=4*a[n-1] + 17*a[n-2]$
A097705(n):=a[n]$
makelist(A097705(n), n, 1, 30); /* Martin Ettl, Nov 03 2012 */
CROSSREFS
Cf. A006131.
Sequence in context: A013192 A273700 A273708 * A131509 A221030 A081007
KEYWORD
nonn,easy
AUTHOR
Ralf Stephan, Aug 27 2004
EXTENSIONS
Definition adapted to offset by Georg Fischer, Jun 18 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 5 15:44 EDT 2024. Contains 372275 sequences. (Running on oeis4.)