The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A022357 Fibonacci sequence beginning 0, 23. 1
0, 23, 23, 46, 69, 115, 184, 299, 483, 782, 1265, 2047, 3312, 5359, 8671, 14030, 22701, 36731, 59432, 96163, 155595, 251758, 407353, 659111, 1066464, 1725575, 2792039, 4517614, 7309653, 11827267 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Tanya Khovanova, Recursive Sequences
FORMULA
G.f.: 23*x/(1-x-x^2). - Philippe Deléham, Nov 20 2008
a(n) = 23*A000045(n). - G. C. Greubel, Aug 26 2017
MATHEMATICA
a={}; b=0; c=23; 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[23*Fibonacci[n], {n, 0, 50}] (* or *) LinearRecurrence[{1, 1}, {0, 23}, 50] (* G. C. Greubel, Aug 26 2017 *)
PROG
(PARI) for(n=0, 50, print1(23*fibonacci(n), ", ")) \\ G. C. Greubel, Aug 26 2017
CROSSREFS
Sequence in context: A291570 A141460 A040507 * A165844 A343634 A291511
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 June 6 19:16 EDT 2024. Contains 373134 sequences. (Running on oeis4.)