login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A022110 Fibonacci sequence beginning 1 20. 2
1, 20, 21, 41, 62, 103, 165, 268, 433, 701, 1134, 1835, 2969, 4804, 7773, 12577, 20350, 32927, 53277, 86204, 139481, 225685, 365166, 590851, 956017, 1546868, 2502885, 4049753, 6552638, 10602391 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

a(n-1)=sum(P(20;n-1-k,k),k=0..ceiling((n-1)/2)), n>=1, with a(-1)=19. These are the SW-NE diagonals in P(20;n,k), the (20,1) Pascal triangle. Cf. A093645 for the (10,1) Pascal triangle. Observation by Paul Barry (pbarry(AT)wit.ie, Apr 29 2004. Proof via recursion relations and comparison of inputs.

LINKS

Tanya Khovanova, Recursive Sequences

FORMULA

a(n)= a(n-1)+a(n-2), n>=2, a(0)=1, a(1)=20. a(-1):=19.

G.f.: (1+19*x)/(1-x-x^2).

MATHEMATICA

a={}; b=1; c=20; AppendTo[a, b]; AppendTo[a, c]; Do[b=b+c; AppendTo[a, b]; c=b+c; AppendTo[a, c], {n, 1, 12, 1}]; a (Vladimir Orlovsky, Jul 23 2008)

CROSSREFS

a(n) = A109754(19, n+1) = A101220(19, 0, n+1).

Sequence in context: A118608 A176241 A075034 * A041808 A041810 A042855

Adjacent sequences:  A022107 A022108 A022109 * A022111 A022112 A022113

KEYWORD

nonn

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com).

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 05:15 EST 2012. Contains 205694 sequences.