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!)
A125813 q-Bell numbers for q=3; eigensequence of A022167, which is the triangle of Gaussian binomial coefficients [n,k] for q=3. 6
1, 1, 2, 7, 47, 628, 17327, 1022983, 132615812, 38522717107, 25526768401271, 39190247441314450, 141213238745969102393, 1207367655155905204747681, 24733467452839301566047854678, 1224709126636123500201799360630423 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n-1} A022167(n-1,k) * a(k) for n>0, with a(0)=1.
EXAMPLE
The recurrence: a(n) = Sum_{k=0..n-1} A022167(n-1,k) * a(k)
is illustrated by:
a(2) = 1*(1) + 4*(1) + 1*(2) = 7;
a(3) = 1*(1) + 13*(1) + 13*(2) + 1*(7) = 47;
a(4) = 1*(1) + 40*(1) + 130*(2) + 40*(7) + 1*(47) = 628.
Triangle A022167 begins:
1;
1, 1;
1, 4, 1;
1, 13, 13, 1;
1, 40, 130, 40, 1;
1, 121, 1210, 1210, 121, 1;
1, 364, 11011, 33880, 11011, 364, 1; ...
PROG
(PARI) /* q-Binomial coefficients: */
C_q(n, k)=if(n<k || k<0, 0, if(n==0 || k==0, 1, prod(j=n-k+1, n, 1-q^j)/prod(j=1, k, 1-q^j)))
/* q-Bell numbers = eigensequence of q-binomial triangle: */
B_q(n)=if(n==0, 1, sum(k=0, n-1, B_q(k)*C_q(n-1, k)))
/* Eigensequence at q=3: */
a(n)=subst(B_q(n), q, 3)
CROSSREFS
Sequence in context: A117141 A349965 A305533 * A254439 A341214 A106159
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 10 2006
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 June 12 00:32 EDT 2024. Contains 373320 sequences. (Running on oeis4.)