|
Search: id:A022103
|
|
|
| A022103 |
|
Fibonacci sequence beginning 1 13. |
|
+0 3
|
|
| 1, 13, 14, 27, 41, 68, 109, 177, 286, 463, 749, 1212, 1961, 3173, 5134, 8307, 13441, 21748, 35189, 56937, 92126, 149063, 241189, 390252, 631441, 1021693, 1653134, 2674827, 4327961, 7002788, 11330749
(list; graph; listen)
|
|
|
OFFSET
|
0,2
|
|
|
COMMENT
|
a(n-1)=sum(P(13;n-1-k,k),k=0..ceiling((n-1)/2)), n>=1, with a(-1)=12. These are the SW-NE diagonals in P(13;n,k), the (13,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)=13. a(-1):=12.
G.f.: (1+12*x)/(1-x-x^2).
|
|
MATHEMATICA
|
a={}; b=1; c=13; 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(12, n+1) = A101220(12, 0, n+1).
Sequence in context: A022803 A112653 A015905 this_sequence A041342 A041344 A041340
Adjacent sequences: A022100 A022101 A022102 this_sequence A022104 A022105 A022106
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
njas
|
|
|
Search completed in 0.002 seconds
|