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.

A119956 Numbers n such that n^3+1=p*q*r where p,q,r are distinct primes.

Original entry on oeis.org

9, 10, 12, 13, 21, 25, 30, 34, 36, 40, 46, 52, 66, 76, 81, 90, 96, 118, 126, 130, 132, 142, 144, 154, 165, 172, 177, 180, 193, 196, 198, 204, 216, 226, 228, 238, 240, 246, 250, 256, 262, 268, 273, 282, 294, 312, 333, 336, 345, 346, 366, 370, 372, 378, 393, 400
Offset: 1

Views

Author

James R. Buddenhagen, Aug 02 2006

Keywords

Comments

A115403 is a supersequence not requiring that p,q,r are distinct.

Examples

			9^3+1=2*5*73 a product of 3 distinct primes, so 9 is in the sequence.
		

Crossrefs

Cf. A115403.

Programs

  • Mathematica
    Select[Range[400], Last/@FactorInteger[#^3 + 1] == {1, 1, 1}&] (* Vincenzo Librandi, Sep 15 2016 *)