login
A379198
G.f. A(x) satisfies 2 = Sum_{n=-oo..+oo} x^n * (1 + x^n)^n * (1+x)^(n^2) * A(x)^n.
1
1, 1, 6, 29, 148, 865, 5481, 35891, 240290, 1642093, 11426333, 80724482, 577729923, 4182253815, 30591920071, 225940210520, 1684083322944, 12665316644764, 96106894379213, 736020834061010, 5691806197738505, 44482817526595550, 351740903195391707, 2818488652963003522, 22931501032724375064
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies the following formulas.
(1) 2 = Sum_{n=-oo..+oo} x^n * (1 + x^n)^n * (1+x)^(n^2) * A(x)^n.
(2) 2 = Sum_{n=-oo..+oo} x^(n*(n-1)) * (1+x)^(n^2) / ((1 + x^n)^n * A(x)^n).
EXAMPLE
G.f.: A(x) = 1 + x + 6*x^2 + 29*x^3 + 148*x^4 + 865*x^5 + 5481*x^6 + 35891*x^7 + 240290*x^8 + 1642093*x^9 + 11426333*x^10 + 80724482*x^11 + 577729923*x^12 + ...
PROG
(PARI) {a(n) = my(V=[1], A=1); for(i=1, n, V=concat(V, 0); A=Ser(V);
V[#V] = polcoef( sum(m=-#V, #V, x^m*(1 + x^m +x*O(x^#V))^m*(1+x +x*O(x^#V))^(m^2) * A^m), #V-1)); V[n+1]}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A381021 A108982 A059724 * A000708 A027248 A192481
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 15 2025
STATUS
approved