A127485 Numbers k such that A127483(k) = A127483(k+1) - 1 = A127483(k+2) - 2.
1, 2, 13, 22, 23, 98, 253, 343, 573, 638, 702, 1322, 1862, 2543, 2638, 2758, 2792, 2912, 3093, 3158, 3242, 3578, 3968, 4382, 5013, 6503, 7048, 7877, 8372, 8912, 9022, 9207, 10298, 10443, 11538, 12482, 13077, 13078, 13868, 14267, 14268, 14323, 14783
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Magma
f:=func
; [k:k in [1..15000]|f(k) and f(k+1) and f(k+2)]; // Marius A. Burtea, Jan 20 2020 -
Mathematica
Select[Range[30000],PrimeQ[ #^3+(#+1)^2]&&PrimeQ[(#+1)^3+(#+2)^2]&&PrimeQ[(#+2)^3+(#+3)^2]&]
Comments