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!)
A237651 G.f. satisfies: A(x) = (1+x+x^2) * A(x^2)^2. 5
1, 1, 3, 2, 9, 7, 17, 10, 41, 31, 75, 44, 150, 106, 238, 132, 445, 313, 711, 398, 1251, 853, 1859, 1006, 3135, 2129, 4677, 2548, 7590, 5042, 10734, 5692, 16865, 11173, 23979, 12806, 36911, 24105, 50551, 26446, 75985, 49539, 104683, 55144, 155140, 99996, 207188, 107192, 300766, 193574, 403994 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
The odd-indexed bisection equals the self-convolution of this sequence.
The self-convolution cube yields A237650, the odd-indexed bisection of A195586.
G.f. A(x) satisfies:
(1) A(x) = Product_{n>=0} ( 1 + x^(2^n) + x^(2*2^n) )^(2^n).
(2) A(x) / A(-x) = (1+x+x^2) / (1-x+x^2).
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 2*x^3 + 9*x^4 + 7*x^5 + 17*x^6 + 10*x^7 +...
where:
A(x) = (1+x+x^2) * (1+x^2+x^4)^2 * (1+x^4+x^8)^4 * (1+x^8+x^16)^8 * (1+x^16+x^32)^16 *...* (1 + x^(2^n) + x^(2*2^n))^(2^n) *...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, #binary(n), A=(1+x+x^2)*subst(A^2, x, x^2) +x*O(x^n)); polcoeff(A, n)}
for(n=0, 50, print1(a(n), ", "))
(PARI) {a(n)=local(A=1+x); A=prod(k=0, #binary(n), (1+x^(2^k)+x^(2*2^k)+x*O(x^n))^(2^k)); polcoeff(A, n)}
for(n=0, 50, print1(a(n), ", "))
CROSSREFS
Sequence in context: A274925 A084398 A118306 * A124003 A159588 A321572
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 04 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 16 00:45 EDT 2024. Contains 371696 sequences. (Running on oeis4.)