A168540 Natural numbers n for which 100n^3 + 27 is prime.
1, 2, 4, 5, 7, 13, 17, 25, 29, 32, 44, 55, 61, 76, 77, 80, 92, 106, 109, 112, 116, 121, 124, 136, 137, 142, 143, 149, 152, 154, 158, 161, 169, 170, 178, 190, 191, 196, 200, 208, 221, 223, 224, 227, 230, 245, 254, 259, 260, 262
Offset: 1
Keywords
Examples
(1) 3^3+10^2*1^3=127=prime(31) gives a(1)=1 (2) 3^3+10^2*2^3=827=prime(144) gives a(2)=2 (3) 3^3+10^2*13^3=219727=prime(19588) gives a(6)=13
References
- Leonard E. Dickson: History of the Theory of numbers, vol. I, Dover Publications 2005
- Friedhelm Padberg, Elementare Zahlentheorie, Spektrum Akademischer Verlag, 2. Auflage 1991
Crossrefs
Programs
-
Mathematica
Select[Range[300],PrimeQ[100#^3+27]&] (* Harvey P. Dale, May 10 2013 *)
Extensions
Edited by Charles R Greathouse IV, Apr 28 2010
Comments