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.

A087902 Least m such that A080256(m)=n and has a maximum number A000792(n) of divisors.

Original entry on oeis.org

2, 4, 6, 12, 36, 60, 180, 900, 1260, 6300, 44100, 69300, 485100, 5336100, 6306300, 69369300, 901800900, 1179278100, 15330615300, 260620460100, 291281690700, 4951788741900, 94083986096100, 113891141063700, 2163931680210300
Offset: 2

Views

Author

Lekraj Beedassy, Oct 14 2003

Keywords

Comments

Omega(m)=A004523(n+1).

Examples

			a(6): The numbers m with A080256(m) = 6 are 24, 30, 32, 36, 40..., with number of divisors 8, 8, 6, 9, 8.... None of these have more than A000792(6) = 9 divisors and 36 is the first that has 9, so a(6) = 36.
		

Programs

  • PARI
    a(n) = local(x); x = (n + 2)\3; prod(i = 1, x, prime(i)^2)/if (n%3 == 1, prime(x)*prime(x - 1), if (n%3, prime(x), 1)); \\ David Wasserman, Jun 17 2005

Extensions

More terms from David Wasserman, Jun 17 2005