login
A367383
Expansion of g.f. A(x) satisfying A(x - A(x)) = Sum_{n>=1} x^prime(n).
1
1, 3, 14, 97, 801, 7519, 77362, 854835, 10008606, 123019640, 1576822761, 20971869512, 288325729119, 4085343085563, 59517261455725, 889803062724848, 13630085879852376, 213643712913777884, 3422884875842433236, 56001632976304058623, 934906290172540190490, 15914504442059742698374
OFFSET
2,2
LINKS
FORMULA
G.f. A(x) = Sum_{n>=2} a(n)*x^n satisfies the following formulas.
(1) A(x - A(x)) = Sum_{n>=1} x^prime(n).
(2) A(x) = Sum_{n>=1} B(x)^prime(n) where B(x) = x + A(B(x)) and B(x - A(x)) = x.
EXAMPLE
G.f.: A(x) = x^2 + 3*x^3 + 14*x^4 + 97*x^5 + 801*x^6 + 7519*x^7 + 77362*x^8 + 854835*x^9 + 10008606*x^10 + 123019640*x^11 + ...
where
A(x - A(x)) = x^2 + x^3 + x^5 + x^7 + x^11 + x^13 + x^17 + ... + x^prime(n) + ...
also
A(x) = B(x)^2 + B(x)^3 + B(x)^5 + B(x)^7 + B(x)^11 + ... + B(x)^prime(n) + ...
where B(x) = x + A(B(x)) begins
B(x) = x + x^2 + 5*x^3 + 34*x^4 + 285*x^5 + 2712*x^6 + 28301*x^7 + 316987*x^8 + 3758998*x^9 + 46755855*x^10 + ...
Further,
B(B(x)) = x + 2*x^2 + 12*x^3 + 94*x^4 + 874*x^5 + 9061*x^6 + 101728*x^7 + 1214974*x^8 + 15260651*x^9 + 200003422*x^10 + ...
where
B(x) = x + B(B(x))^2 + B(B(x))^3 + B(B(x))^5 + B(B(x))^7 + ... + B(B(x))^prime(n) + ...
PROG
(PARI) \\ Generates N terms of this sequence \\
N = 30; A = x^2; B = x;
for(i=1, N, B = serreverse(x - A +x*O(x^N)); A = sum(n=1, N, B^prime(n)) ); Vec(A)
CROSSREFS
Sequence in context: A336525 A345106 A276747 * A007470 A306986 A074515
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 29 2023
STATUS
approved