Original entry on oeis.org
1, 1, 3, 10, 40, 163, 738, 3308, 15767, 74784, 368717, 1805773, 9113860, 45683811, 234272577, 1194970083, 6201864043, 32034420492, 167941221248, 876209929880, 4627819824850, 24348860106096, 129422692783990, 685425678409977
Offset: 0
A093637
G.f.: A(x) = Product_{n>=0} 1/(1 - a(n)*x^(n+1)) = Sum_{n>=0} a(n)*x^n.
Original entry on oeis.org
1, 1, 2, 4, 9, 20, 49, 117, 297, 746, 1947, 5021, 13378, 35237, 95123, 254825, 694987, 1882707, 5184391, 14177587, 39289183, 108337723, 301997384, 837774846, 2347293253, 6546903307, 18417850843, 51617715836, 145722478875, 409964137081, 1161300892672
Offset: 0
G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 9*x^4 + 20*x^5 + 49*x^6 +...
where
A(x) = 1/((1-x)*(1-x^2)*(1-2*x^3)*(1-4*x^4)*(1-9*x^5)*(1-20*x^6)*(1-49*x^7)...).
-
b:= proc(n, i) option remember; `if`(i>n, 0,
a(i-1)*`if`(i=n, 1, b(n-i, i)))+`if`(i>1, b(n, i-1), 0)
end:
a:= n-> `if`(n=0, 1, b(n, n)):
seq(a(n), n=0..40); # Alois P. Heinz, Jul 20 2012
-
b[n_, i_] := b[n, i] = If[i>n, 0, a[i-1]*If[i == n, 1, b[n-i, i]]] + If[i>1, b[n, i-1], 0]; a[n_] := If[n == 0, 1, b[n, n]]; Table[a[n], {n, 0, 40}] (* Jean-François Alcover, Jun 15 2015, after Alois P. Heinz *)
-
{a(n) = polcoeff(prod(i=0,n-1,1/(1-a(i)*x^(i+1)))+x*O(x^n),n)}
for(n=0,25,print1(a(n),", "))
-
{a(n)=local(A=1+x);for(i=1,n,A=exp(sum(m=1,n,1/m*sum(k=1,n, polcoeff(A+O(x^k), k-1)^m*x^(m*k)) +x*O(x^n))));polcoeff(A,n)}
for(n=0,25,print1(a(n),", "))
A203507
G.f.: Product_{n>=0} 1/(1-a(n)*x^(n+1))^3 = Sum_{n>=0} a(n)*x^n.
Original entry on oeis.org
1, 3, 15, 82, 504, 3198, 21592, 147570, 1045221, 7464052, 54549804, 400487997, 2990765270, 22396990002, 169881957174, 1291189065086, 9910770901971, 76178174174205, 590312326353680, 4578346159792815, 35745960436892046, 279290158338688617
Offset: 0
G.f.: A(x) = 1 + 3*x + 15*x^2 + 82*x^3 + 504*x^4 + 3198*x^5 + 21592*x^6 +...
where
A(x) = 1/((1-x)*(1-3*x^2)*(1-15*x^3)*(1-82*x^4)*(1-504*x^5)*...)^3.
Related expansion:
A(x)^(1/3) = 1 + x + 4*x^2 + 19*x^3 + 110*x^4 + 659*x^5 + 4355*x^6 +...
Showing 1-3 of 3 results.
Comments