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!)
A222527 O.g.f.: Sum_{n>=0} (n^7)^n * exp(-n^7*x) * x^n / n!. 5
1, 1, 8191, 1742343625, 2998587019946701, 24204004899040755811870, 666480349285726891499539272955, 50789872166903636182659702516635946082, 9237419992097529135737293866043969707761346313, 3590622358224471993651445012122431990834934483552661750 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Stirling2(7*n, n).
a(n) = [x^(7*n)] (7*n)! * (exp(x) - 1)^n / n!.
a(n) = [x^(6*n)] 1 / Product_{k=1..n} (1-k*x).
a(n) = 1/n! * [x^n] Sum_{k>=0} (k^7)^k*x^k / (1 + k^7*x)^(k+1).
a(n) ~ n^(6*n) * 7^(7*n) / (sqrt(2*Pi*(1-c)*n) * exp(6*n) * (7-c)^(6*n) * c^n), where c = -LambertW(-7*exp(-7)). - Vaclav Kotesovec, May 11 2014
EXAMPLE
O.g.f.: A(x) = 1 + x + 8191*x^2 + 1742343625*x^3 + 2998587019946701*x^4 +...+ Stirling2(7*n, n)*x^n +...
where
A(x) = 1 + 1^7*x*exp(-1^7*x) + 2^14*exp(-2^7*x)*x^2/2! + 3^21*exp(-3^7*x)*x^3/3! + 4^28*exp(-4^7*x)*x^4/4! + 5^35*exp(-5^7*x)*x^5/5! +...
is a power series in x with integer coefficients.
MATHEMATICA
Table[StirlingS2[7*n, n], {n, 0, 20}] (* Vaclav Kotesovec, May 11 2014 *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, (k^7)^k*exp(-k^7*x +x*O(x^n))*x^k/k!), n)}
(PARI) {a(n)=1/n!*polcoeff(sum(k=0, n, (k^7)^k*x^k/(1+k^7*x +x*O(x^n))^(k+1)), n)}
(PARI) {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(6*n))), 6*n)}
(PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
{a(n) = Stirling2(7*n, n)}
for(n=0, 12, print1(a(n), ", "))
CROSSREFS
Sequence in context: A069388 A069414 A289477 * A035908 A069274 A220585
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 23 2013
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 March 18 22:56 EDT 2024. Contains 370952 sequences. (Running on oeis4.)