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!)
A248603 G.f. satisfies: A(x) = Sum_{n>=0} x^n * (A(x) + x^n)^n. 0
1, 1, 3, 6, 19, 56, 186, 615, 2127, 7467, 26720, 96801, 354901, 1313293, 4900266, 18413166, 69620351, 264673536, 1011100541, 3879382837, 14942671683, 57760251344, 223988614094, 871159201568, 3397330833310, 13281696243924, 52042973504510, 204357290336561, 804029764090404 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. satisfies: A(x) = Sum_{n>=1} x^(n*(n-1)) / (1 - A(x)*x^n)^n.
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 6*x^3 + 19*x^4 + 56*x^5 + 186*x^6 +...
where the g.f. satisfies following series identity:
A(x) = 1 + x*(A(x)+x) + x^2*(A(x)+x^2)^2 + x^3*(A(x)+x^3)^3 + x^4*(A(x)+x^4)^4 + x^5*(A(x)+x^5)^5 + x^6*(A(x)+x^6)^6 +...
A(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+x); for(i=1, n, A=sum(k=0, n, x^k * (A + x^k +x*O(x^n))^k)); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=sum(k=1, sqrtint(2*n+1), x^(k*(k-1)) / (1 - A*x^k +x*O(x^n))^k )); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A345400 A148572 A320174 * A332344 A345244 A052393
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 09 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 02:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)