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.

A346138 Sphenic numbers that are the product of Mersenne primes.

Original entry on oeis.org

651, 2667, 11811, 27559, 172011, 761763, 1777447, 2752491, 3120771, 7281799, 11010027, 12189603, 28442407, 32247967, 48758691, 49938051, 113770279, 116522119, 199753347, 466091143, 516026527, 2064117919, 3220807683, 7515217927, 12883304451, 30061043719, 33281679391, 45097156587, 133127479327
Offset: 1

Views

Author

Timothy L. Tiffin, Jul 06 2021

Keywords

Comments

The largest known sphenic number is a term of this sequence.
a(n) == 3 (mod 4) for n >= 1.

Examples

			a(1) = 651, since 651 = 3*7*31.
a(2) = 2667, since 2667 = 3*7*127.
a(3) = 11811, since 11811 = 3*31*127.
		

Crossrefs

Programs

  • Mathematica
    M = 2^MersennePrimeExponent[Range[12]] - 1; Take[ Union[ Times @@@ Subsets[ M, {3}]], 50]