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!)
A022358 Fibonacci sequence beginning 0, 24. 1
0, 24, 24, 48, 72, 120, 192, 312, 504, 816, 1320, 2136, 3456, 5592, 9048, 14640, 23688, 38328, 62016, 100344, 162360, 262704, 425064, 687768, 1112832, 1800600, 2913432, 4714032, 7627464, 12341496 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
G.f.: 24*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 24*A000045(n). - G. C. Greubel, Aug 26 2017
MATHEMATICA
a={}; b=0; c=24; 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 18 2008 *)
Table[24*Fibonacci[n], {n, 0, 50}] (* or *) LinearRecurrence[{1, 1}, {0, 24}, 50] (* G. C. Greubel, Aug 26 2017 *)
PROG
(PARI) for(n=0, 50, print1(24*fibonacci(n), ", ")) \\ G. C. Greubel, Aug 26 2017
CROSSREFS
Sequence in context: A185750 A040553 A183008 * A122505 A103640 A004011
KEYWORD
nonn
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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)