login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A308031
G.f. A(x) satisfies: A(x) = x + x^2 + x^3 + x^4 * (1 + A(A(x))).
2
1, 1, 1, 1, 1, 2, 4, 8, 16, 34, 78, 195, 523, 1472, 4284, 12832, 39608, 126406, 418276, 1436230, 5110170, 18785417, 71109917, 276404921, 1101234823, 4493335194, 18773200580, 80320474041, 351906635253, 1578344960050, 7241981076424, 33961826526634, 162615016927284
OFFSET
1,6
COMMENTS
Shifts left 4 places under COMPOSE transform.
MATHEMATICA
terms = 33; A[_] = 0; Do[A[x_] = x + x^2 + x^3 + x^4 (1 + A[A[x]]) + O[x]^(terms + 1) // Normal, terms + 1]; Rest[CoefficientList[A[x], x]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 10 2019
STATUS
approved