A110558 Numbers n such that (n^2-8)/8 is prime.
8, 12, 16, 24, 28, 32, 40, 44, 52, 60, 68, 72, 84, 88, 96, 100, 112, 136, 144, 152, 156, 164, 168, 172, 180, 184, 196, 200, 208, 224, 236, 248, 252, 256, 276, 292, 304, 320, 324, 340, 348, 364, 368, 380, 392, 408, 432, 436, 448, 452, 460, 472, 500, 504, 508
Offset: 1
Keywords
Links
- G. C. Greubel, Table of n, a(n) for n = 1..5000
Programs
-
Mathematica
Select[Range[510],PrimeQ[(#^2-8)/8]&] (* Harvey P. Dale, Feb 03 2011 *)
-
PARI
is(n)=isprime((n^2-8)/8) \\ Charles R Greathouse IV, Feb 20 2017
Formula
Extensions
Extended by Ray Chandler, Sep 15 2005
Comments