A127483 Numbers n such that A100705(n) = n^3 + (n+1)^2 is prime.
1, 2, 3, 4, 8, 9, 13, 14, 15, 17, 22, 23, 24, 25, 30, 32, 34, 35, 38, 39, 42, 45, 50, 58, 60, 64, 65, 79, 83, 85, 88, 90, 92, 94, 98, 99, 100, 102, 113, 115, 122, 125, 127, 130, 133, 134, 137, 140, 144, 147, 148, 153, 154, 157, 164, 167, 170, 178, 179, 184, 190, 193
Offset: 1
Keywords
Links
- Ivan Neretin, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[1000],PrimeQ[ #^3+(#+1)^2]&]
Comments