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.

A203798 E.g.f.: Sum_{n>=0} (1 - exp(-n^3*x))^n.

Original entry on oeis.org

1, 1, 127, 115027, 383578651, 3406562690251, 66363706916031547, 2491358400855491082427, 164269869314849711368915051, 17742882813152530090093631133451, 2973340319455184373850280909330520667, 740141055495168376026146815923984436993627
Offset: 0

Views

Author

Paul D. Hanna, Jan 09 2013

Keywords

Examples

			O.g.f.: F(x) = 1 + x + 127*x^2 + 115027*x^3 + 383578651*x^4 +...
where
F(x) = 1 + x/(1+x) + 2^6*2!*x^2/((1+2^3*1*x)*(1+2^3*2*x)) + 3^9*3!*x^3/((1+3^3*1*x)*(1+3^3*2*x)*(1+3^3*3*x)) + 4^12*4!*x^4/((1+4^3*1*x)*(1+4^3*2*x)*(1+4^3*3*x)*(1+4^3*4*x)) +...
...
E.g.f.: A(x) = 1 + x + 127*x^2/2! + 115027*x^3/3! + 383578651*x^4/4! +...
where
A(x) = 1 + (1-exp(-x)) + (1-exp(-2^3*x))^2 + (1-exp(-3^3*x))^3 + (1-exp(-4^3*x))^4 + (1-exp(-5^3*x))^5 + (1-exp(-6^3*x))^6 +...
		

Crossrefs

Programs

  • Mathematica
    Flatten[{1,Table[Sum[(-1)^(n-k) * k^(3*n) * k! * StirlingS2[n,k], {k,0,n}], {n,1,20}]}] (* Vaclav Kotesovec, May 08 2014 *)
  • PARI
    {a(n)=n!*polcoeff(sum(k=0, n, (1-exp(-k^3*x+x*O(x^n)))^k), n)}
    for(n=0, 20, print1(a(n), ", "))
    
  • PARI
    {a(n)=polcoeff(sum(m=0, n, m^(3*m)*m!*x^m/prod(k=1, m, 1+m^3*k*x+x*O(x^n))), n)}
    for(n=0, 20, print1(a(n), ", "))
    
  • PARI
    {a(n) = sum(k=0, n, (-1)^(n-k)*k^(3*n)*k!*stirling(n, k, 2))}
    for(n=0, 20, print1(a(n), ", "))

Formula

O.g.f.: Sum_{n>=0} n^(3*n) * n! * x^n / Product_{k=1..n} (1 + n^3*k*x).
a(n) = Sum_{k=0..n} (-1)^(n-k) * k^(3*n) * k! * Stirling2(n,k).
a(n) == 1 (mod 6) for n>=0.
a(n) ~ c * d^n * (n!)^4 / n^(3/2), where d = 19.56009813649729638637945621039407270230134093295681610091365833339628... and c = 0.068225708245494700607840778486121251627676796315... . - Vaclav Kotesovec, May 08 2014