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!)
A340935 G.f. A(x) satisfies: A(x) = Sum_{n>=0} x^n/(1 - x*A(x)^(2*n)). 1
1, 2, 3, 8, 31, 146, 754, 4168, 24387, 149878, 961735, 6413730, 44305495, 316289264, 2329690081, 17685913364, 138276568051, 1112831978494, 9214885055084, 78482008660596, 687242245179732, 6184901074959982, 57179080181866903, 542740440965244192 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Equals row sums of triangle A340934.
LINKS
EXAMPLE
G.f.: A(x) = 1 + 2*x + 3*x^2 + 8*x^3 + 31*x^4 + 146*x^5 + 754*x^6 + 4168*x^7 + 24387*x^8 + 149878*x^9 + 961735*x^10 + 6413730*x^11 + 44305495*x^12 + ...
where
A(x) = 1/(1-x) + x/(1 - x*A(x)) + x^2/(1 - x*A(x)^2) + x^3/(1 - x*A(x)^3) + x^4/(1 - x*A(x)^4) + x^5/(1 - x*A(x)^5) + ...
PROG
(PARI) {a(n) = my(A=1); for(i=1, n, A = sum(m=0, n, x^m/(1 - x*A^(2*m) +x*O(x^n))) ); polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Cf. A340934.
Sequence in context: A141520 A072042 A160586 * A162074 A162052 A082569
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 28 2021
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)