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!)
A292499 a(n) equals the sum of the Gaussian binomial coefficients [n,k] at q=n for n>=0. 1
1, 2, 5, 28, 529, 42176, 16649389, 33736398032, 409516908802369, 28081351726592246272, 13485189809930561625032701, 39060769254069395008311334483648, 909068834019126312744002601418684280593, 133895756625158337189123339374443720098444148736, 179003735935372017689180463552762995401182868750095031853 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2 + Sum_{m=1..n-1} Product_{k=1..m} (n^(n-k+1) - 1)/(n^k - 1) for n>0, with a(0) = 1.
EXAMPLE
Terms equal the row sums of the triangle:
1;
1, 1;
1, 3, 1;
1, 13, 13, 1;
1, 85, 357, 85, 1;
1, 781, 20306, 20306, 781, 1;
1, 9331, 2072815, 12485095, 2072815, 9331, 1;
1, 137257, 336416907, 16531644851, 16531644851, 336416907, 137257, 1;
1, 2396745, 79783113865, 40928737412745, 327499862955657, 40928737412745, 79783113865, 2396745, 1; ...
in which row n lists the Gaussian binomial coefficients [n,k] at q=n.
MAPLE
b:= proc(n, h, m) option remember; `if`(n=0, 1,
h^m*b(n-1, h, m)+b(n-1, h, m+1))
end:
a:= n-> b(n$2, 0):
seq(a(n), n=0..15); # Alois P. Heinz, Aug 08 2021
MATHEMATICA
a[n_] := Sum[QBinomial[n, k, n], {k, 0, n}];
Table[a[n], {n, 0, 15}] (* Jean-François Alcover, Sep 14 2022 *)
PROG
(PARI) {a(n) = if(n==0, 1, 2 + sum(m=1, n-1, prod(k=1, m, (n^(n-k+1)-1)/(n^k-1) ) ))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A138293 A316972 A068069 * A306893 A105787 A110497
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 19 2017
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 May 23 12:41 EDT 2024. Contains 372763 sequences. (Running on oeis4.)