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”).

A308283
G.f. A(x) satisfies: A(x) = (1/(1 - x)) * A(x^3)*A(x^5)*A(x^7)* ... *A(x^(2*k-1))* ...
2
1, 1, 1, 2, 2, 3, 4, 5, 6, 9, 11, 13, 17, 20, 25, 33, 39, 46, 59, 69, 83, 103, 121, 143, 175, 206, 242, 293, 342, 400, 481, 558, 650, 771, 893, 1040, 1225, 1414, 1634, 1912, 2202, 2538, 2954, 3390, 3893, 4517, 5165, 5913, 6820, 7783, 8893, 10212, 11626, 13239, 15156, 17219
OFFSET
0,4
LINKS
FORMULA
G.f.: Product_{k>=1} 1/(1 - x^(2*k-1))^A074206(2*k-1).
MATHEMATICA
terms = 55; A[_] = 1; Do[A[x_] = 1/(1 - x) Product[A[x^(2 k - 1)], {k, 2, terms}] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 18 2019
STATUS
approved