OFFSET
0,2
COMMENTS
Given g.f. A(x), note that A(x)^(1/2) is not an integer series.
EXAMPLE
G.f.: A(x) = 1 + 2*x + 14*x^2 + 682*x^3 + 236826*x^4 + 525175434*x^5 +...
such that
log(A(x))/2 = x + 12*x^2/2 + 985*x^3/3 + 470832*x^4/4 + 1311738121*x^5/5 + 21300003689580*x^6/6 + 2015874949414289041*x^7/7 +...+ Pell(n^2)*x^n/n +...
Pell numbers begin:
A000129 = [1,2,5,12,29,70,169,408,985,2378,5741,13860,33461,...].
PROG
(PARI) {Pell(n)=polcoeff(x/(1-2*x-x^2+x*O(x^n)), n)}
{a(n)=polcoeff(exp(sum(k=1, n, 2*Pell(k^2)*x^k/k)+x*O(x^n)), n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 24 2012
STATUS
approved