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!)
A049679 a(n) = (F(8*n+7)+F(8*n+5))/3, where F=A000045 (the Fibonacci sequence). 2
6, 281, 13201, 620166, 29134601, 1368706081, 64300051206, 3020733700601, 141910183877041, 6666757908520326, 313195711516578281, 14713531683370658881, 691222793406904389126, 32472757758441135630041, 1525528391853326470222801, 71667361659347902964841606 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
From Philippe Deléham, Nov 18 2008: (Start)
a(n) = 47*a(n-1) - a(n-2), a(0)=6, a(1)=281.
G.f.: (6-x)/(1-47*x+x^2). (End)
a(n) = (((5+3*sqrt(5))*(2/(47+21*sqrt(5)))^n + (1/2*(47+21*sqrt(5)))^n*(1885+843*sqrt(5))))/(315+141*sqrt(5)). - Colin Barker, May 05 2016
MATHEMATICA
LinearRecurrence[{47, -1}, {6, 281}, 20] (* Harvey P. Dale, Dec 14 2014 *)
Table[(Fibonacci[8*n+7]+Fibonacci[8*n+5])/3, {n, 0, 30}] (* G. C. Greubel, Dec 02 2017 *)
PROG
(PARI) Vec((6-x)/(1-47*x+x^2) + O(x^20)) \\ Colin Barker, May 05 2016
(Magma) [(Fibonacci(8*n+7) + Fibonacci(8*n+5))/3: n in [0..30]]; // G. C. Greubel, Dec 02 2017
(PARI) for(n=0, 30, print1((fibonacci(8*n+7) + fibonacci(8*n+5))/3, ", ")) \\ G. C. Greubel, Dec 02 2017
CROSSREFS
Sequence in context: A342983 A199093 A163015 * A201139 A172660 A203051
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Corrected and extended by T. D. Noe, Nov 07 2006
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 April 29 15:45 EDT 2024. Contains 372114 sequences. (Running on oeis4.)