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!)
A049655 a(n) = (F(8n+2)-1)/3, where F=A000045 (the Fibonacci sequence). 2
0, 18, 861, 40464, 1900962, 89304765, 4195423008, 197095576626, 9259296678429, 434989848309552, 20435263573870530, 960022398123605373, 45100617448235582016, 2118768997668948749394, 99537042272992355639517, 4676122217832971766307920 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: 3*x*(-6+x) / ( (x-1)*(x^2-47*x+1) ). - R. J. Mathar, Oct 26 2015
a(n) = (-1+((47+21*sqrt(5))^(-n)*(-2^(1+n)*(9+4*sqrt(5))+(123+55*sqrt(5))*(2207+987*sqrt(5))^n))/(105+47*sqrt(5)))/3. - Colin Barker, Mar 06 2016
a(n) = 47*a(n-1)-a(n-2)+15. - Vincenzo Librandi, Mar 06 2016
MATHEMATICA
(Fibonacci[8*Range[0, 20]+2]-1)/3 (* or *) LinearRecurrence[{48, -48, 1}, {0, 18, 861}, 20] (* Harvey P. Dale, Dec 02 2015 *)
RecurrenceTable[{a[0] == 0, a[1] == 18, a[n] == 47 a[n-1] - a[n-2] + 15}, a, {n, 30}] (* Vincenzo Librandi, Mar 06 2016 *)
PROG
(PARI) concat(0, Vec(3*x*(-6+x)/((x-1)*(x^2-47*x+1)) + O(x^25))) \\ Colin Barker, Mar 06 2016
(Magma) I:=[0, 18]; [n le 2 select I[n] else 47*Self(n-1)-Self(n-2)+15: n in [1..30]]; // Vincenzo Librandi, Mar 06 2016
CROSSREFS
Sequence in context: A303991 A033471 A128074 * A145615 A215194 A201538
KEYWORD
nonn,easy
AUTHOR
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)