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!)
A240063 Number of partitions of n such that m(2) < m(3), where m = multiplicity. 3
0, 0, 0, 1, 1, 1, 2, 3, 5, 7, 9, 13, 18, 25, 33, 44, 58, 76, 100, 129, 165, 212, 269, 342, 431, 540, 675, 842, 1045, 1292, 1592, 1957, 2397, 2931, 3569, 4337, 5258, 6358, 7671, 9236, 11091, 13296, 15906, 18994, 22634, 26927, 31974, 37907, 44867, 53017, 62547 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(n) + A240064(n) + A240065(n) = A000041(n) for n >= 0.
From Vaclav Kotesovec, Oct 06 2021: (Start)
G.f.: x^3*(1 + x)/((1 + x + x^2 + x^3 + x^4) * Product_{k>=1} (1 - x^k).
a(n) ~ exp(Pi*sqrt(2*n/3)) / (10*n*sqrt(3)).
a(n) ~ 2*A000041(n)/5. (End)
EXAMPLE
a(8) counts these 5 partitions: 53, 431, 332, 3311, 311111.
MATHEMATICA
z = 60; f[n_] := f[n] = IntegerPartitions[n]; t1 = Table[Count[f[n], p_ /; Count[p, 2] < Count[p, 3]], {n, 0, z}] (* A240063 *)
t2 = Table[Count[f[n], p_ /; Count[p, 2] <= Count[p, 3]], {n, 0, z}] (* A240063(n+3) *)
t3 = Table[Count[f[n], p_ /; Count[p, 2] == Count[p, 3]], {n, 0, z}] (* A240064 *)
t4 = Table[Count[f[n], p_ /; Count[p, 2] > Count[p, 3]], {n, 0, z}] (* A240065 *)
t5 = Table[Count[f[n], p_ /; Count[p, 2] >= Count[p, 3]], {n, 0, z}] (* A240065(n+2) *)
nmax = 50; CoefficientList[Series[x^3*(1 + x)/((1 + x + x^2 + x^3 + x^4) * Product[1-x^k, {k, 1, nmax}]), {x, 0, nmax}], x] (* Vaclav Kotesovec, Oct 06 2021 *)
CROSSREFS
Sequence in context: A069999 A271661 A035563 * A216374 A240448 A218614
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 31 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 May 14 02:26 EDT 2024. Contains 372528 sequences. (Running on oeis4.)