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!)
A049686 a(n) = Fibonacci(8n)/3. 3
0, 7, 329, 15456, 726103, 34111385, 1602508992, 75283811239, 3536736619241, 166151337293088, 7805576116155895, 366695926122033977, 17226902951619441024, 809297742799991694151, 38019767008647990184073, 1786119751663655546957280, 83909608561183162716808087, 3941965482623944992143022809 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
a(n) = 47*a(n-1) - a(n-2), n>1. a(0)=0, a(1)=7.
G.f.: 7*x/(1-47*x+x^2).
a(n) = A004187(2n).
a(n) = 7*A049668(n). - R. J. Mathar, Oct 26 2015
E.g.f.: 2*exp(47*x/2)*sinh(21*sqrt(5)*x/2)/(3*sqrt(5)). - Stefano Spezia, Dec 14 2019
EXAMPLE
a(2) = F(8 * 2) / 3 = F(16) / 3 = 987 / 3 = 329. - Indranil Ghosh, Feb 05 2017
MAPLE
with(combinat); seq( fibonacci(8*n)/3, n=0..20); # G. C. Greubel, Dec 14 2019
MATHEMATICA
Fibonacci[8(Range[20]-1)]/3 (* G. C. Greubel, Dec 14 2019 *)
LinearRecurrence[{47, -1}, {0, 7}, 20] (* Harvey P. Dale, Dec 27 2019 *)
PROG
(PARI) a(n) = fibonacci(8*n)/3; \\ Michel Marcus, Feb 05 2017
(Magma) [Fibonacci(8*n)/3: n in [0..20]]; // G. C. Greubel, Dec 14 2019
(Sage) [fibonacci(8*n)/3 for n in (0..20)] # G. C. Greubel, Dec 14 2019
(GAP) List([0..20], n-> Fibonacci(8*n)/3 ); # G. C. Greubel, Dec 14 2019
CROSSREFS
Sequence in context: A109059 A002000 A092588 * A177019 A160432 A324233
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Better description and more terms from Michael Somos
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 4 22:58 EDT 2024. Contains 372257 sequences. (Running on oeis4.)