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.

A039952 Maximum cardinality of finite D0L sequence over an alphabet with n symbols.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 12, 15, 20, 30, 31, 60, 61, 84, 105, 140, 210, 211, 420, 421, 422, 423, 840, 841, 1260, 1261, 1540, 2310, 2520, 4620, 4621, 5460, 5461, 9240, 9241, 13860, 13861, 16380, 16381, 27720, 30030, 32760, 60060, 60061, 60062, 60063, 120120, 120121
Offset: 0

Views

Author

Keywords

Examples

			a(11) = 31 because we can write 11 = 1 + 2 + 3 + 5 and 31 = 1+2*3*5.
		

References

  • P. M. B. Vitanyi, Lindenmayer Systems: Structure, Languages and Growth Functions, Mathematisch Centrum, Math. Centre Tracts #96, 1980, p. 25.

Crossrefs

Cf. A051703.

Programs

  • PARI
    \\ here s is A051703 as a vector
    s(n)={my(v=vector(n+1)); v[1]=1; forprime(p=2, n, forstep(i=#v, 1, -1, my(q=1); while(q*pAndrew Howroyd, Jan 05 2018

Formula

Max { Prod p^a + d : Sum p^a + d = n }, p prime.
a(n) = max(a(n-1)+1, A051703(n)). - Andrew Howroyd, Jan 05 2018

Extensions

First 4 values appear incorrectly in cited references; corrected by JOS
a(0)=1 and terms a(35) and beyond from Andrew Howroyd, Jan 05 2018