login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A247332 G.f. A(x) satisfies: 1-x = Sum_{n>=0} (A(x) + (-x)^n)^n * (-x)^n. 2
1, 2, 3, 7, 16, 41, 107, 286, 782, 2179, 6172, 17702, 51272, 149727, 440341, 1303130, 3877837, 11596602, 34832573, 105041452, 317900632, 965240836, 2939479066, 8976098663, 27478467863, 84314278171, 259262013763, 798802232031, 2465713674230, 7624219181757, 23612883510015, 73241919575468 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies: 1-x = Sum_{n>=1} x^(n*(n-1)) / (1 - A(x)*(-x)^n)^n.
a(n) ~ c * d^n / n^(3/2), where d = 3.2506054895139..., c = 1.82859376... . - Vaclav Kotesovec, Sep 29 2014
EXAMPLE
G.f.: A(x) = 1 + 2*x + 3*x^2 + 7*x^3 + 16*x^4 + 41*x^5 + 107*x^6 + 286*x^7 +...
where
1-x = 1 - (A(x) - x)*x + (A(x) + x^2)^2*x^2 - (A(x) - x^3)^3*x^3 + (A(x) + x^4)^4*x^4 - (A(x) - x^5)^5*x^5 + (A(x) + x^6)^6*x^6 - (A(x) - x^7)^7*x^7 +-...
Also, the g.f. satisfies the series identity:
1-x = 1/(1 + A(x)*x) + x^2/(1 - A(x)*x^2)^2 + x^6/(1 + A(x)*x^3)^3 + x^12/(1 - A(x)*x^4)^4 + x^20/(1 + A(x)*x^5)^5 + x^30/(1 - A(x)*x^6)^6 + x^42/(1 + A(x)*x^7)^7 +...
PROG
(PARI) {a(n)=local(A=[1]); for(i=1, n, A=concat(A, 0); A[#A]=Vec(sum(k=0, #A, (Ser(A) + (-x)^k)^k*(-x)^k))[#A+1]); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=[1]); for(i=1, n, A=concat(A, 0); A[#A]=Vec(sum(k=1, sqrtint(#A)+1, x^(k^2-k)/(1 - Ser(A)*(-x)^k)^k ))[#A+1]); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Cf. A317997.
Sequence in context: A352816 A107387 A091487 * A162092 A143884 A227546
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 26 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)