A118851 Product of parts in n-th partition in Abramowitz and Stegun order.
1, 1, 2, 1, 3, 2, 1, 4, 3, 4, 2, 1, 5, 4, 6, 3, 4, 2, 1, 6, 5, 8, 9, 4, 6, 8, 3, 4, 2, 1, 7, 6, 10, 12, 5, 8, 9, 12, 4, 6, 8, 3, 4, 2, 1, 8, 7, 12, 15, 16, 6, 10, 12, 16, 18, 5, 8, 9, 12, 16, 4, 6, 8, 3, 4, 2, 1, 9, 8, 14, 18, 20, 7, 12, 15, 16, 20, 24, 27, 6, 10, 12, 16, 18, 24, 5, 8, 9, 12, 16, 4
Offset: 0
Examples
a(9) = 4 because the 9th partition is [2,2] and 2*2 = 4. Table T(n,k) starts: 1; 1; 2, 1; 3, 2, 1; 4, 3, 4, 2, 1; 5, 4, 6, 3, 4, 2, 1; 6, 5, 8, 9, 4, 6, 8, 3, 4, 2, 1; 7, 6, 10, 12, 5, 8, 9, 12, 4, 6, 8, 3, 4, 2, 1; 8, 7, 12, 15, 16, 6, 10, 12, 16, 18, 5, 8, 9, 12, 16, 4, 6, 8, 3, 4, 2, 1;
References
- Abramowitz and Stegun, Handbook (1964) page 831.
Links
- Andrew Howroyd, Table of n, a(n) for n = 0..2713 (rows 0..20)
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
- Walter Bridges and William Craig, On the distribution of the norm of partitions, arXiv:2308.00123 [math.CO], 2023.
- Abhimanyu Kumar and Meenakshi Rana, On the treatment of partitions as factorization and further analysis, Journal of the Ramanujan Mathematical Society 35(3), 263-276 (2020).
- Wolfdieter Lang, Rows n=1..10.
- Robert Schneider and Andrew V. Sills, The Product of Parts or "Norm" of a Partition, INTEGERS, Volume 20A (2020) Paper #A13, 16 pp.
- Andrew V. Sills and Robert Schneider, The product of parts or "norm" of a partition, arXiv:1904.08004 [math.NT], 2019-2021.
Crossrefs
Programs
-
PARI
C(sig)={vecprod(sig)} Row(n)={apply(C, [Vecrev(p) | p<-partitions(n)])} { for(n=0, 7, print(Row(n))) } \\ Andrew Howroyd, Oct 19 2020
Formula
Extensions
Corrected and extended by Franklin T. Adams-Watters, May 26 2006
Comments