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.

A024936 a(n) = maximal length of partitions of n into distinct primes or -1 if there is no such partition.

Original entry on oeis.org

0, -1, 1, 1, -1, 2, -1, 2, 2, 2, 3, 1, 3, 2, 3, 3, 3, 4, 3, 3, 3, 4, 3, 4, 3, 4, 4, 4, 5, 4, 5, 4, 4, 4, 5, 4, 5, 4, 5, 5, 5, 6, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 6, 6, 7, 6, 7, 6, 6, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 7, 7, 8, 7, 7, 7, 8, 7, 8, 7, 7, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 8, 8, 9, 8, 7, 8, 8, 8, 9, 8, 9, 8, 9, 8
Offset: 0

Views

Author

Keywords

Examples

			a(12) = 3 because 12 = 2+3+7, but 12 is not a sum of 4 or more distinct primes.
		

Crossrefs

a(n) + 1 = row length of A219180(n).

Programs

  • Mathematica
    ReplaceAll[Table[Max[Length /@ Select[IntegerPartitions[n, n, Prime[Range[n]]],  DuplicateFreeQ[#] &]], {n, 0, 100}] /. -Infinity -> -1] (* Robert Price, Apr 23 2025 *)

Extensions

More terms from Naohiro Nomoto, Oct 28 2001
More terms from David Wasserman, Jan 23 2003
Offset changed and edited by Alois P. Heinz, Nov 13 2012