cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A118851 Product of parts in n-th partition in Abramowitz and Stegun order.

Original entry on oeis.org

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

Views

Author

Alford Arnold, May 01 2006

Keywords

Comments

Let Theta(n) denote the set of norm values corresponding to all the partitions of n. The following results hold regarding this set: (i) Theta(n) is a subset of Theta(n+1); (ii) A prime p will appear as a norm only for partitions of n>=p; (iii) There exists a prime p not in Theta(n) for all n>=6; (iv) Let h(k) be the prime floor function which gives the greatest prime less than or equal to the k, then the prime p=h(n+1) does not belong to Theta(n); and (v) The primes not in the set Theta(n) are A000720(A000792(n)) - A000720(n). - Abhimanyu Kumar, Nov 25 2020

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.

Crossrefs

Cf. A000041 (row lengths), A006906 (row sums).

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

a(n) = A085643(n)/A048996(n).
T(n,k) = A005361(A036035(n,k)). - Andrew Howroyd, Oct 19 2020

Extensions

Corrected and extended by Franklin T. Adams-Watters, May 26 2006