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.

A140437 a(n) is the maximal number of partitions of n of the same length with the same product.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 6, 6, 7, 8, 9, 9, 9, 10, 11, 12, 13, 14, 16, 18, 19, 21, 24, 26, 28, 30, 31, 36, 38, 41, 44, 49, 51, 54, 60, 65, 70, 76, 81, 89, 93, 102, 111, 120, 131, 144, 155, 167, 182, 201, 216, 236, 254, 279, 303, 336, 363, 402, 431, 476
Offset: 1

Views

Author

Tanya Khovanova, Jun 20 2008, Jun 23 2008

Keywords

Comments

This sequence was inspired by John Conway's Wizards puzzle (see link).

Examples

			The number 13 can be partitioned into 3 numbers with the same product in two ways: {1,6,6} and {2,2,9}. It can also be partitioned into 5 numbers with the same product in two ways: {1,1,3,4,4} and {1,2,2,2,6}. 13 can't have 3 different partitions of the same length with the same product. Hence a(13) = 2.
		

Programs

  • Mathematica
    Table[Max[ Transpose[ Flatten[Table[ Tally[Apply[Times, IntegerPartitions[k, {n}], 2]], {n, k}], 1]][[2]]], {k, 60}]
    Table[ Max[ Transpose[ Flatten[ Table[ Tally[ Apply[ Times, IntegerPartitions[k, {n}], 2]], {n, k}], 1]][[2]]], {k, 60}] (* Robert G. Wilson v, Aug 19 2008 *)

Extensions

More terms from Robert G. Wilson v, Aug 19 2008