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.

A229451 G.f.: exp( Sum_{n>=1} (3*n)!/n!^3 * x^n/n ).

Original entry on oeis.org

1, 6, 63, 866, 13899, 246366, 4676768, 93322596, 1934035965, 41286407510, 902562584556, 20119266633060, 455832458083577, 10470568749165246, 243361203186769659, 5714294570067499930, 135377464019074334826, 3232534121305720233264, 77726654423445817800164
Offset: 0

Views

Author

Paul D. Hanna, Sep 23 2013

Keywords

Comments

The sixth root of the o.g.f. A(x)^(1/6) = 1 + x + 8*x^2 + 101*x^3 + 1569*x^4 + 27445*x^5 + ... appears to have integer coefficients. See A229452. More generally, if A(m,x) := exp( Sum_{n >= 1} (m*n)!/n!^m * x^n/n ), m = 1,2,3,..., then it can be shown that the expansion of A(m,x) has integer coefficients. We conjecture that the expansion of A(m,x)^(1/m!) also has integer coefficients. - Peter Bala, Feb 16 2020

Examples

			G.f.: A(x) = 1 + 6*x + 63*x^2 + 866*x^3 + 13899*x^4 + 246366*x^5 +...,
where
log(A(x)) = 6*x + 90*x^2/2 + 1680*x^3/3 + 34650*x^4/4 + 756756*x^5/5 +...+ A006480(n)*x^n/n + ....
		

Crossrefs

Cf. A229452, A006480 (de Bruijn's S(3,n)), A061401, A333042, A333043, A370288, A362732, A370289, A370293.

Programs

  • Mathematica
    CoefficientList[Series[Exp[6*x*HypergeometricPFQ[{1,1,4/3,5/3},{2,2,2},27*x]],{x,0,20}],x] (* Vaclav Kotesovec, Dec 25 2013 *)
  • PARI
    {a(n)=polcoeff(exp(sum(k=1,n,(3*k)!/k!^3*x^k/k) +x*O(x^n)),n)}
    for(n=0,25,print1(a(n),", "))

Formula

a(n) ~ c * 3^(3*n)/n^2, where c = 2^11 * 3^(7/2) * Pi^5 * A370293^6 = 0.406436497... - Vaclav Kotesovec, Dec 25 2013, updated Feb 14 2024
a(0) = 1; a(n) = (1/n) * Sum_{k=1..n} A006480(k) * a(n-k). - Seiichi Manyama, Feb 09 2024
From Peter Bala, Oct 24 2024: (Start)
Series reversion of x*A(-x) = x + 6*x^2 + 9*x^3 + 56*x^4 - 300*x^5 + 3942*x^6 - ... is the g.f. of A061401.
The g.f. A(x) satisfies [x^n] A(x)^n = A362732(n). (End)