OFFSET
1,2
COMMENTS
A variant of sequence A107902 by Michael Somos.
FORMULA
G.f.: A(x) = series_reversion(G107902(x)) where G107902(x) is g.f. of A107902.
EXAMPLE
A(x) = x - 2*x^2 + 6*x^3 - 22*x^4 + 88*x^5 - 376*x^6 + 1680*x^7 -+...
PROG
(PARI) {a(n)=local(A); if(n<1, 0, A=x+O(x^2); for(k=2, n, A=x/sum(i=-sqrtint(n-1), sqrtint(n+2), x^((i^2+i)/2)*A^((i^2-i)/2))); polcoeff(A, n))}
CROSSREFS
KEYWORD
sign
AUTHOR
Paul D. Hanna, May 28 2005
STATUS
approved