cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A222527 O.g.f.: Sum_{n>=0} (n^7)^n * exp(-n^7*x) * x^n / n!.

Original entry on oeis.org

1, 1, 8191, 1742343625, 2998587019946701, 24204004899040755811870, 666480349285726891499539272955, 50789872166903636182659702516635946082, 9237419992097529135737293866043969707761346313, 3590622358224471993651445012122431990834934483552661750
Offset: 0

Views

Author

Paul D. Hanna, Feb 23 2013

Keywords

Examples

			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.
		

Crossrefs

Programs

  • Mathematica
    Table[StirlingS2[7*n, n],{n,0,20}] (* Vaclav Kotesovec, May 11 2014 *)
  • 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), ", "))

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

A222528 O.g.f.: Sum_{n>=0} (n^8)^n * exp(-n^8*x) * x^n / n!.

Original entry on oeis.org

1, 1, 32767, 47063200806, 768305500780164501, 75740854251732106906082250, 31154086963475828638359480518580526, 41929298560838945526242744414099901692285884, 155440114706926165785630654089245708839702615196926765, 1396002062838446082394548660243302585983358463911636390911298400
Offset: 0

Views

Author

Paul D. Hanna, Feb 23 2013

Keywords

Examples

			O.g.f.: A(x) = 1 + x + 32767*x^2 + 47063200806*x^3 + 768305500780164501*x^4 +...+ Stirling2(8*n, n)*x^n +...
where
A(x) = 1 + 1^8*x*exp(-1^8*x) + 2^16*exp(-2^8*x)*x^2/2! + 3^24*exp(-3^8*x)*x^3/3! + 4^32*exp(-4^8*x)*x^4/4! + 5^40*exp(-5^8*x)*x^5/5! +...
is a power series in x with integer coefficients.
		

Crossrefs

Programs

  • Mathematica
    Table[StirlingS2[8*n, n],{n,0,20}] (* Vaclav Kotesovec, May 11 2014 *)
  • PARI
    {a(n)=polcoeff(sum(k=0, n, (k^8)^k*exp(-k^8*x +x*O(x^n))*x^k/k!), n)}
    
  • PARI
    {a(n)=1/n!*polcoeff(sum(k=0, n, (k^8)^k*x^k/(1+k^8*x +x*O(x^n))^(k+1)), n)}
    
  • PARI
    {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(7*n))), 7*n)}
    
  • PARI
    {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
    {a(n) = Stirling2(8*n, n)}
    for(n=0, 12, print1(a(n), ", "))

Formula

a(n) = Stirling2(8*n, n).
a(n) = [x^(8*n)] (8*n)! * (exp(x) - 1)^n / n!.
a(n) = [x^(7*n)] 1 / Product_{k=1..n} (1-k*x).
a(n) = 1/n! * [x^n] Sum_{k>=0} (k^8)^k*x^k / (1 + k^8*x)^(k+1).
a(n) ~ n^(7*n) * 8^(8*n) / (sqrt(2*Pi*(1-c)*n) * exp(7*n) * (8-c)^(7*n) * c^n), where c = -LambertW(-8*exp(-8)). - Vaclav Kotesovec, May 11 2014

A222529 O.g.f.: Sum_{n>=0} (n^9)^n * exp(-n^9*x) * x^n / n!.

Original entry on oeis.org

1, 1, 131071, 1270865805301, 196740254364198919901, 236795997997922560392792426501, 1454443713270449746545892977574122129433, 34559048315358253352594346952765431711799794270765, 2610516895723221966171633379256064857587637240616032299710417
Offset: 0

Views

Author

Paul D. Hanna, Feb 23 2013

Keywords

Examples

			O.g.f.: A(x) = 1 + x + 131071*x^2 + 1270865805301*x^3 + 196740254364198919901*x^4 +...+ Stirling2(9*n, n)*x^n +...
where
A(x) = 1 + 1^9*x*exp(-1^9*x) + 2^18*exp(-2^9*x)*x^2/2! + 3^27*exp(-3^9*x)*x^3/3! + 4^36*exp(-4^9*x)*x^4/4! + 5^45*exp(-5^9*x)*x^5/5! +...
is a power series in x with integer coefficients.
		

Crossrefs

Programs

  • Mathematica
    Table[StirlingS2[9*n, n],{n,0,20}] (* Vaclav Kotesovec, May 11 2014 *)
  • PARI
    {a(n)=polcoeff(sum(k=0, n, (k^9)^k*exp(-k^9*x +x*O(x^n))*x^k/k!), n)}
    
  • PARI
    {a(n)=1/n!*polcoeff(sum(k=0, n, (k^9)^k*x^k/(1+k^9*x +x*O(x^n))^(k+1)), n)}
    
  • PARI
    {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(8*n))), 8*n)}
    
  • PARI
    {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
    {a(n) = Stirling2(9*n, n)}
    for(n=0, 12, print1(a(n), ", "))

Formula

a(n) = Stirling2(9*n, n).
a(n) = [x^(9*n)] (9*n)! * (exp(x) - 1)^n / n!.
a(n) = [x^(8*n)] 1 / Product_{k=1..n} (1-k*x).
a(n) = 1/n! * [x^n] Sum_{k>=0} (k^9)^k*x^k / (1 + k^9*x)^(k+1).
a(n) ~ n^(8*n) * 9^(9*n) / (sqrt(2*Pi*(1-c)*n) * exp(8*n) * (9-c)^(8*n) * c^n), where c = -LambertW(-9*exp(-9)). - Vaclav Kotesovec, May 11 2014

A222530 O.g.f.: Sum_{n>=1} (n^10)^n * exp(-n^10*x) * x^n / n!.

Original entry on oeis.org

1, 1, 524287, 34314651811530, 50369882873307917364901, 740095864368253016271188139587625, 67872880319721869662486234870635119906757244, 28468832412072117193931250482560479429446507352468258480, 43812568949824405485262661429905291482204531455805230631187460302069
Offset: 0

Views

Author

Paul D. Hanna, Feb 23 2013

Keywords

Comments

Generally, for p>=2 is StirlingS2(p*n,n) asymptotic to n^((p-1)*n) * p^(p*n) / (sqrt(2*Pi*(1-c)*n) * exp((p-1)*n) * (p-c)^((p-1)*n) * c^n), where c = -LambertW(-p*exp(-p)). - Vaclav Kotesovec, May 11 2014

Examples

			O.g.f.: A(x) = 1 + x + 524287*x^2 + 34314651811530*x^3 + 50369882873307917364901*x^4 +...+ Stirling2(10*n, n)*x^n +...
where
A(x) = 1 + 1^10*x*exp(-1^10*x) + 2^20*exp(-2^10*x)*x^2/2! + 3^30*exp(-3^10*x)*x^3/3! + 4^40*exp(-4^10*x)*x^4/4! + 5^50*exp(-5^10*x)*x^5/5! +...
is a power series in x with integer coefficients.
		

Crossrefs

Programs

  • Mathematica
    Table[StirlingS2[10*n, n],{n,0,20}] (* Vaclav Kotesovec, May 11 2014 *)
  • PARI
    {a(n)=polcoeff(sum(k=0, n, (k^10)^k*exp(-k^10*x +x*O(x^n))*x^k/k!), n)}
    
  • PARI
    {a(n)=1/n!*polcoeff(sum(k=0, n, (k^1)^k*x^k/(1+k^10*x +x*O(x^n))^(k+1)), n)}
    
  • PARI
    {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(9*n))), 9*n)}
    
  • PARI
    {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
    {a(n) = Stirling2(10*n, n)}
    for(n=0, 12, print1(a(n), ", "))

Formula

a(n) = Stirling2(10*n, n).
a(n) = [x^(10*n)] (10*n)! * (exp(x) - 1)^n / n!.
a(n) = [x^(9*n)] 1 / Product_{k=1..n} (1-k*x).
a(n) = 1/n! * [x^n] Sum_{k>=0} (k^10)^k*x^k / (1 + k^10*x)^(k+1).
a(n) ~ n^(9*n) * 10^(10*n) / (sqrt(2*Pi*(1-c)*n) * exp(9*n) * (10-c)^(9*n) * c^n), where c = -LambertW(-10*exp(-10)). - Vaclav Kotesovec, May 11 2014
Showing 1-4 of 4 results.