OFFSET
1,3
COMMENTS
This sequence equals the self-convolution (shifted right) of the binomial transform of this sequence.
It appears that a(2*n-1) is even for n > 1.
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..520
FORMULA
G.f. A(x) = Sum_{n>=1} a(n)*x^n satisfies the following formulas.
(1) A(x) = x + A(x/(1-x))^2.
(2) A(x/(1+x)) = x/(1+x) + A(x)^2.
(3) A(x/(1-x)) = x/(1-x) + A(x/(1-2*x))^2.
(4) A(x/(1-x^2)) = x/(1-x^2) + A(x/(1-x-x^2))^2.
(5) A(x/(1-n*x)) = x/(1-n*x) + A( x/(1-(n+1)*x) )^2 for all n.
(6) A(x/(1-n*x^2)) = x/(1-n*x^2) + A( x/(1 - x - n*x^2) )^2 for all n.
(7) A(x/g(x)) = x/g(x) + A( x/(g(x) - x) )^2 for all g(x) such that g(0) = 1.
(8) A(x) = x + sq(x/(1-x) + sq(x/(1-2*x) + sq(x/(1-3*x) + sq(x/(1-4*x) + ...)))) where sq(x) = x^2, an infinitely nested square.
a(n) = Sum_{k=1..n-1} b(n-k) * b(k) for n > 1 with a(1) = 1 where b(n) = Sum_{k=1..n} binomial(n-1,k-1) * a(k).
EXAMPLE
G.f.: A(x) = x + x^2 + 4*x^3 + 18*x^4 + 96*x^5 + 579*x^6 + 3834*x^7 + 27404*x^8 + 209052*x^9 + 1688389*x^10 + ... where A(x) = x + A(x/(1-x))^2.
RELATED SERIES.
A(x)^2 = x^2 + 2*x^3 + 9*x^4 + 44*x^5 + 244*x^6 + 1494*x^7 + 9918*x^8 + 70564*x^9 + 533644*x^10 + ... which equals A(x/(1+x)) - x/(1+x).
A(x/(1-x)) = x + 2*x^2 + 7*x^3 + 34*x^4 + 197*x^5 + 1285*x^6 + 9175*x^7 + 70483*x^8 + 575909*x^9 + ... which equals x/(1-x) + A(x/(1-2*x))^2.
A(x/(1-x))^2 = x^2 + 4*x^3 + 18*x^4 + 96*x^5 + 579*x^6 + 3834*x^7 + 27404*x^8 + 209052*x^9 + ... which equals A(x) - x.
RELATED TABLES.
The table of coefficients of x^k, k>=1, in A(x/(1-n*x)) for n >= 0 begins
n = 0: [1, 1, 4, 18, 96, 579, 3834, ...];
n = 1: [1, 2, 7, 34, 197, 1285, 9175, ...];
n = 2: [1, 3, 12, 62, 384, 2691, 20638, ...];
n = 3: [1, 4, 19, 108, 717, 5367, 43983, ...];
n = 4: [1, 5, 28, 178, 1280, 10243, 89410, ...];
n = 5: [1, 6, 39, 278, 2181, 18729, 174079, ...];
n = 6: [1, 7, 52, 414, 3552, 32835, 325350, ...]; ...
The table of coefficients of x^k, k>=1, in A(x/(1-(n+1)*x))^2 for n >= 0 begins
n = 0: [0, 1, 4, 18, 96, 579, 3834, ...];
n = 1: [0, 1, 6, 33, 196, 1284, 9174, ...];
n = 2: [0, 1, 8, 54, 368, 2659, 20574, ...];
n = 3: [0, 1, 10, 81, 636, 5124, 43254, ...];
n = 4: [0, 1, 12, 114, 1024, 9219, 85314, ...];
n = 5: [0, 1, 14, 153, 1556, 15604, 158454, ...];
n = 6: [0, 1, 16, 198, 2256, 25059, 278694, ...]; ...
Note that the differences between row n of both tables are the powers of n.
PROG
(PARI) {a(n) = my(A=x); for(i=1, n, A = x + subst(A, x, x/(1-x + x*O(x^n)))^2 ); polcoef(A, n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 02 2026
STATUS
approved
