login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A294360
G.f. A(x) satisfies: [x^(n-1)] A(x)^(n^2) = (n^2)^(n-1) for n>=1.
3
1, 1, 5, 146, 9935, 1161399, 206499453, 52093726159, 17770811461875, 7903030237890371, 4450363873663943294, 3098938855124650814264, 2616552190721485829559668, 2635178871851323631797948230, 3121810359776427044817295874677, 4298670834657263815567279951080956, 6809336162211769799756516349665301635, 12296952422064277377043754761717448273557, 25116528778581121454413639996325045161219974
OFFSET
0,3
LINKS
FORMULA
a(n) ~ c * n^(2*n - 2), where c = exp(2 - exp(-2)) = 6.453771681742981632532303... - Vaclav Kotesovec, Aug 11 2021, updated Mar 18 2024
EXAMPLE
G.f.: A(x) = 1 + x + 5*x^2 + 146*x^3 + 9935*x^4 + 1161399*x^5 + 206499453*x^6 + 52093726159*x^7 + 17770811461875*x^8 + 7903030237890371*x^9 + 4450363873663943294*x^10 + 3098938855124650814264*x^11 + 2616552190721485829559668*x^12 +...
such that the coefficient of x^(n-1) in A(x)^(n^2) equals (n^2)^(n-1) for n>=1.
The table of coefficients of x^k in A(x)^(n^2) begin:
n=1: [1, 1, 5, 146, 9935, 1161399, 206499453, ...];
n=2: [1, 4, 26, 648, 41703, 4775648, 840796570, ...];
n=3: [1, 9, 81, 1758, 102213, 11266209, 1949437539, ...];
n=4: [1, 16, 200, 4096, 207220, 21470032, 3617873616, ...];
n=5: [1, 25, 425, 8950, 390625, 36920005, 5985228975, ...];
n=6: [1, 36, 810, 18696, 723375, 60466176, 9272944890, ...];
n=7: [1, 49, 1421, 37338, 1347843, 97588547, 13841287201, ...];
n=8: [1, 64, 2336, 71168, 2535248, 159036480, 20303433408, 4398046511104, ...]; ...
in which the main diagonal begins:
[1, 4, 81, 4096, 390625, 60466176, 13841287201, 4398046511104, ..., (n^2)^(n-1), ...].
PROG
(PARI) {a(n) = my(A=[1]); for(m=2, n+1, A = concat(A, 0); A[m] = ( (m^2)^(m-1) - Vec( Ser(A)^(m^2) )[m] )/m^2); A[n+1]}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 01 2017
STATUS
approved