login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A022105
Fibonacci sequence beginning 1, 15.
2
1, 15, 16, 31, 47, 78, 125, 203, 328, 531, 859, 1390, 2249, 3639, 5888, 9527, 15415, 24942, 40357, 65299, 105656, 170955, 276611, 447566, 724177, 1171743, 1895920, 3067663, 4963583, 8031246, 12994829
OFFSET
0,2
COMMENTS
a(n-1)=sum(P(15;n-1-k,k),k=0..ceiling((n-1)/2)), n>=1, with a(-1)=14. These are the SW-NE diagonals in P(15;n,k), the (15,1) Pascal triangle. Cf. A093645 for the (10,1) Pascal triangle. Observation by Paul Barry, Apr 29 2004. Proof via recursion relations and comparison of inputs.
FORMULA
a(n)= a(n-1)+a(n-2), n>=2, a(0)=1, a(1)=15. a(-1):=14.
G.f.: (1+14*x)/(1-x-x^2).
a(n) = A101220(14,0,n+1). - Ross La Haye, May 02 2006
MATHEMATICA
a={}; b=1; c=15; 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 Joseph Stephan Orlovsky, Jul 23 2008 *)
LinearRecurrence[{1, 1}, {1, 15}, 40] (* Harvey P. Dale, Oct 11 2015 *)
PROG
(Magma) a0:=1; a1:=15; [GeneralizedFibonacciNumber(a0, a1, n): n in [0..30]]; // Bruno Berselli, Feb 12 2013
CROSSREFS
a(n) = A109754(14, n+1).
a(k) = A118654(4, k).
Sequence in context: A193566 A079832 A037971 * A041456 A041458 A041454
KEYWORD
nonn,easy
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 18:35 EDT 2024. Contains 376087 sequences. (Running on oeis4.)