A090867 Number of partitions of n such that the set of even parts has only one element.
0, 0, 1, 1, 3, 4, 6, 9, 13, 18, 23, 32, 42, 55, 69, 89, 112, 141, 175, 217, 266, 326, 396, 480, 581, 697, 834, 996, 1183, 1402, 1660, 1954, 2297, 2694, 3150, 3674, 4280, 4970, 5762, 6669, 7701, 8876, 10219, 11737, 13460, 15418, 17628, 20125, 22951, 26128, 29709
Offset: 0
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..10000 (terms 0..5000 from Alois P. Heinz)
- Tewodros Amdeberhan, George E. Andrews, and Cristina Ballantine, Refinements of Beck-type partition identities, arXiv:2204.00105 [math.CO], 2022.
- George E. Andrews, Euler's Partition Identity and Two Problems of George Beck, The Mathematics Student, 86, 1-2:115-119 (2017); Preprint.
- Cristina Ballantine and Richard Bielak, Combinatorial proofs of two Euler type identities due to Andrews, arXiv:1803.06394 [math.CO], 2018.
- Cristina Ballantine and Amanda Welch, Beck-type identities for Euler pairs of order r, arXiv:2006.02335 [math.NT], 2020.
- Cristina Ballantine and Amanda Welch, Beck-type identities: new combinatorial proofs and a theorem for parts congruent to t mod r, arXiv:2011.08220 [math.CO], 2020.
- Cristina Ballantine and Amanda Welch, Beck-type companion identities for Franklin's identity, arXiv:2101.06260 [math.CO], 2021.
- Cristina Ballantine and Amanda Welch, Beck-type identities: new combinatorial proofs and a modular refinement, Ramanujan J. (2021).
- Cristina Ballantine and Mircea Merca, Combinatorial proofs of two theorems related to the number of even parts in all partitions of n into distinct parts, Ramanujan J., 54:1 (2021), 107-112.
- Cristina Ballantine, Hannah E. Burson, Amanda Folsom, Chi-Yun Hsu, Isabella Negrini and Boya Wen, On a Partition Identity of Lehmer, arXiv:2109.00609 [math.CO], 2021.
- Cristina Ballantine and Amanda Folsom, On the number of parts in all partitions enumerated by the Rogers-Ramanujan identities, arXiv:2303.03330 [math.NT], 2023.
- Shishuo Fu and Dazhao Tang, Generalizing a partition theorem of Andrews, arXiv:1705.05046 [math.CO], 2017.
- Gabriel Gray, Emily Payne, and Ren Watson, Generalized partition identities and fixed perimeter analogues, Oregon State Univ. (2024). See pp. 2, 49.
- Gabriel Gray, David Hovey, Brandt Kronholm, Emily Payne, Holly Swisher, and Ren Watson, A generalization of Franklin's partition identity and a Beck-type companion identity, arXiv:2410.17378 [math.NT], 2024. See p. 12. See also Ramanujan J. (2025) Volume 67, Art. No. 100.
- Gabriel Gray, Emily Payne, Holly Swisher, and Ren Watson, Fixed perimeter analogues of some partition results, arXiv:2502.12394 [math.CO], 2025. See p. 15.
- Jia Huang, Compositions with restricted parts, arXiv:1812.11010 [math.CO], 2018. Also Discrete Masth., 343 (2020), # 111875.
- Runqiao Li and Andrew Y. Z. Wang, The dual form of Beck type identities, Ramanujan J. (2021).
- Mircea Merca, Combinatorial interpretations of a recent convolution for the number of divisors of a positive integer, Journal of Number Theory, Volume 160, March 2016, Pages 60-75.
- Mircea Merca, On the partitions into distinct parts and odd parts, arXiv:2005.03619 [math.CO], 2020.
- Aritro Pathak, On certain partition bijections related to Euler's partition problem, arXiv:2004.03596 [math.CO], 2020. Also Discrete Mathematics 345.2 (2022): 112673.
- Jane Y. X. Yang, Combinatorial proofs and generalizations on conjectures related with Euler's partition theorem, arXiv:1801.06815 [math.CO], 2018.
Programs
-
Maple
b:= proc(n, i, t) option remember; `if`(n=0, t, `if`(i<1, 0, b(n, i-1, t)+`if`(i>n or t=1 and i::even, 0, add(b(n-i*j, i-1, `if`(i::even, 1, t)), j=1..n/i)))) end: a:= n-> b(n$2, 0): seq(a(n), n=0..70); # Alois P. Heinz, Jun 17 2016 A090867 := proc(n) add(numtheory[tau](k)*A000009(n-2*k),k=1..n/2) ; end proc: # R. J. Mathar, Jun 18 2016
-
Mathematica
f[n_] := Count[ Plus @@@ Mod[ Union /@ IntegerPartitions[n] + 1, 2], 1]; Table[ f[n], {n, 0, 50}] (* Robert G. Wilson v, Feb 16 2004 *) a[n_] := Sum[DivisorSigma[0, k] PartitionsQ[n-2k], {k, 1, n/2}]; a /@ Range[0, 70] (* Jean-François Alcover, May 24 2021, after R. J. Mathar *)
-
PARI
seq(n)={Vec(sum(k=1, n\2, x^(2*k)/(1-x^(2*k)) + O(x*x^n))/prod(k=1, n\2, 1-x^(2*k-1) + O(x*x^n)), -(n+1))} \\ Andrew Howroyd, Feb 13 2021
Formula
G.f.: Sum_{m>0} x^(2*m)/(1-x^(2*m))/Product_{m>0} (1-x^(2*m-1)).
a(n) ~ 3^(1/4) * (2*gamma + log(3*n/Pi^2)) * exp(Pi*sqrt(n/3)) / (8*Pi*n^(1/4)), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, May 25 2018
Extensions
More terms from Robert G. Wilson v, Feb 16 2004
Comments