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.

Showing 1-1 of 1 results.

A359089 a(n) is the index of the smallest tetrahedral number with exactly n distinct prime factors.

Original entry on oeis.org

1, 2, 3, 7, 18, 34, 90, 259, 988, 2583, 5795, 37960, 101268, 424268, 3344614, 17168723, 74282570, 351200178, 1082950218, 5313193819, 31439710664, 317760710839, 1782400663483
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 16 2022

Keywords

Crossrefs

Programs

  • Mathematica
    r = -1; Reap[Do[If[# > r, r = #; Sow[n]] &[PrimeNu[n (n + 1) (n + 2)/6]], {n, 2^19}] ][[-1, -1]] (* Michael De Vlieger, Dec 19 2022 *)
  • PARI
    t(n) = n*(n+1)*(n+2)/6; \\ A000292
    a(n) = my(k=1); while (omega(t(k)) != n, k++); k; \\ Michel Marcus, Dec 19 2022
Showing 1-1 of 1 results.