login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A022350
Fibonacci sequence beginning 0, 16.
1
0, 16, 16, 32, 48, 80, 128, 208, 336, 544, 880, 1424, 2304, 3728, 6032, 9760, 15792, 25552, 41344, 66896, 108240, 175136, 283376, 458512, 741888, 1200400, 1942288, 3142688, 5084976, 8227664, 13312640
OFFSET
0,2
FORMULA
G.f.: 16*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 16 * A000045(n). - Vladimir Joseph Stephan Orlovsky, Jun 08 2011
MATHEMATICA
a={}; b=0; c=16; AppendTo[a, b]; AppendTo[a, c]; Do[b=b+c; AppendTo[a, b]; c=b+c; AppendTo[a, c], {n, 4!}]; a (* Vladimir Joseph Stephan Orlovsky, Sep 17 2008 *)
Table[16*Fibonacci[n], {n, 0, 50}] (* or *) LinearRecurrence[{1, 1}, {0, 16}, 50] (* G. C. Greubel, Aug 26 2017 *)
PROG
(PARI) for(n=0, 50, print1(16*fibonacci(n), ", ")) \\ G. C. Greubel, Aug 26 2017
CROSSREFS
Sequence in context: A238409 A040241 A278348 * A226068 A230977 A174683
KEYWORD
nonn
STATUS
approved