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.

A359193 a(n) is the index of the smallest square pyramidal number with exactly n prime factors (counted with multiplicity).

Original entry on oeis.org

1, 2, 3, 4, 7, 15, 24, 31, 63, 80, 175, 255, 511, 1023, 512, 6912, 2047, 6655, 14336, 16384, 32767, 90112, 131071, 180224, 483327, 1114112, 1638400, 2097151, 1048575, 16777216, 8388607, 33357824, 16777215, 92274687, 67108864
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 19 2022

Keywords

Crossrefs

Programs

  • PARI
    sp(n) = n*(n+1)*(2*n+1)/6; \\ A000330
    a(n) = my(k=1); while (bigomega(sp(k)) != n, k++); k; \\ Michel Marcus, Dec 20 2022

Extensions

a(26)-a(34) from Daniel Suteu, Dec 29 2022