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!)
A339277 Number of partitions of 2*n into powers of 2 where every part appears at least 2 times. 1
1, 1, 2, 3, 5, 6, 9, 11, 16, 19, 25, 30, 39, 45, 56, 65, 81, 92, 111, 127, 152, 171, 201, 226, 265, 295, 340, 379, 435, 480, 545, 601, 682, 747, 839, 920, 1031, 1123, 1250, 1361, 1513, 1640, 1811, 1963, 2164, 2335, 2561, 2762, 3027, 3253, 3548, 3813, 4153, 4448, 4827, 5167 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: (1/(1 - x^3)) * Product_{k>=0} 1/(1 - x^(2^k)).
G.f.: (1/(1 - x)) * Product_{k>=0} (1 + x^(2^(k+1))/(1 - x^(2^k))).
a(n) = [x^(2*n)] Product_{k>=0} (1 + x^(2^(k+1))/(1 - x^(2^k))).
a(n) = Sum_{k=0..n} U(k,-1/2) * A000123(n-k), where U(k,x) is the Chebyshev U-polynomial.
EXAMPLE
a(4) = 5 because we have [4, 4], [2, 2, 2, 2], [2, 2, 2, 1, 1], [2, 2, 1, 1, 1, 1] and [1, 1, 1, 1, 1, 1, 1, 1].
MATHEMATICA
nmax = 55; CoefficientList[Series[(1/(1 - x^3)) Product[1/(1 - x^(2^k)), {k, 0, Floor[Log[2, nmax]] + 1}], {x, 0, nmax}], x]
A000123[0] = 1; A000123[n_] := A000123[n] = A000123[Floor[n/2]] + A000123[n - 1]; a[n_] := Sum[ChebyshevU[k, -1/2] A000123[n - k], {k, 0, n}]; Table[a[n], {n, 0, 55}]
CROSSREFS
Sequence in context: A239958 A008769 A115270 * A027588 A224956 A131995
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 29 2020
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 July 29 15:02 EDT 2024. Contains 374734 sequences. (Running on oeis4.)