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

 


A015484
q-Fibonacci numbers for q=11.
15
0, 1, 11, 1332, 1772903, 25957074155, 4180412751509808, 7405856194503424044443, 144319186063701664852323850561, 30936099231445891001437365359291226684, 72945703751334713422596099393765798208419237205
OFFSET
0,3
LINKS
FORMULA
a(n) = 11^(n-1)*a(n-1) + a(n-2).
MAPLE
q:=11; seq(add((product((1-q^(2*(n-j-1-k)))/(1-q^(2*k+2)), k=0..j-1))* q^binomial(n-2*j, 2), j = 0..floor((n-1)/2)), n = 0..20); # G. C. Greubel, Dec 19 2019
MATHEMATICA
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==a[n-1]*11^(n-1)+ a[n-2]}, a, {n, 20}] (* Vincenzo Librandi, Nov 10 2012 *)
F[n_, q_]:= Sum[QBinomial[n-j-1, j, q^2]*q^Binomial[n-2*j, 2], {j, 0, Floor[(n-1)/2]}]; Table[F[n, 11], {n, 0, 20}] (* G. C. Greubel, Dec 19 2019 *)
PROG
(PARI) q=11; m=20; v=concat([0, 1], vector(m-2)); for(n=3, m, v[n]=q^(n-2)*v[n-1]+v[n-2]); v \\ G. C. Greubel, Dec 19 2019
(Magma) q:=11; I:=[0, 1]; [n le 2 select I[n] else q^(n-2)*Self(n-1) + Self(n-2): n in [1..20]]; // G. C. Greubel, Dec 19 2019
(Sage)
def F(n, q): return sum( q_binomial(n-j-1, j, q^2)*q^binomial(n-2*j, 2) for j in (0..floor((n-1)/2)))
[F(n, 11) for n in (0..20)] # G. C. Greubel, Dec 19 2019
(GAP) q:=11;; a:=[0, 1];; for n in [3..20] do a[n]:=q^(n-2)*a[n-1]+a[n-2]; od; a; # G. C. Greubel, Dec 19 2019
CROSSREFS
q-Fibonacci numbers: A280222 (q=-3), A280221 (q=-2), A280261 (q=-1), A000045 (q=1), A015473 (q=2), A015474 (q=3), A015475 (q=4), A015476 (q=5), A015477 (q=6), A015479 (q=7), A015480 (q=8), A015481 (q=9), A015482 (q=10), this sequence (q=11), A015485 (q=12).
Differs from A015469.
Sequence in context: A078274 A013716 A110195 * A145185 A068896 A286650
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 23 08:38 EDT 2024. Contains 376146 sequences. (Running on oeis4.)