The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A341153 Number of partitions of 2*n into exactly n squarefree parts. 1
1, 1, 2, 2, 4, 5, 8, 9, 13, 16, 23, 27, 37, 44, 59, 70, 91, 107, 138, 162, 205, 240, 300, 350, 432, 504, 615, 715, 865, 1003, 1206, 1394, 1663, 1918, 2276, 2618, 3088, 3544, 4160, 4764, 5566, 6360, 7401, 8440, 9779, 11131, 12854, 14602, 16803, 19051, 21859, 24741, 28303 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f.: Product_{k>=1} 1 / (1 - mu(k+1)^2 * x^k).
MATHEMATICA
nmax = 52; CoefficientList[Series[Product[1/(1 - MoebiusMu[k + 1]^2 x^k), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d MoebiusMu[d + 1]^2, {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 52}]
CROSSREFS
Sequence in context: A326443 A326522 A326626 * A326628 A326524 A326629
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 06 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 May 16 08:15 EDT 2024. Contains 372549 sequences. (Running on oeis4.)