OFFSET
0,3
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..500
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 15*x^3 + 206*x^4 + 11144*x^5 + 207797*x^6 + 18714429*x^7 + 494557540*x^8 + 61317318250*x^9 + 12455879194406*x^10 + ...
Below we illustrate the property [x^n] A(x)^prime(n) = prime(n)^n for n >= 0; here prime(0) is taken to be 1.
The table of coefficients of x^k in A(x)^prime(n) begins
n = 0: [1, 1, 2, 15, 206, 11144, 207797, ...];
n = 1: [1, 2, 5, 34, 446, 22760, 438931, ...];
n = 2: [1, 3, 9, 58, 726, 34905, 694208, ...];
n = 3: [1, 5, 20, 125, 1435, 61051, 1280845, ...];
n = 4: [1, 7, 35, 224, 2401, 90216, 1976023, ...];
n = 5: [1, 11, 77, 550, 5456, 161051, 3735094, ...];
n = 6: [1, 13, 104, 793, 7761, 204997, 4826809, ...]; ...
in which the main diagonal equals A307539:
[1, 2, 9, 125, 2401, 161051, 4826809, ..., prime(n)^n, ...].
PROG
(PARI) {a(n) = my(A=[1, 1]); for(i=1, n, A = concat(A, 0); m = #A-1;
A[#A] = prime(m)^(m-1) - polcoef(Ser(A)^prime(m), m)/prime(m) ); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 03 2026
STATUS
approved
