OFFSET
1,1
COMMENTS
Half of the even terms in A110801. - R. J. Mathar, Jan 31 2011
LINKS
Daniel Starodubtsev, Table of n, a(n) for n = 1..10000
EXAMPLE
If k=99 then 24*k + 1 = 2377 (prime).
MATHEMATICA
Select[Range[200], PrimeQ[24#+1]&] (* Harvey P. Dale, Apr 01 2018 *)
PROG
(Magma) [ n: n in [0..1500] | IsPrime(24*n + 1) ]; // Vincenzo Librandi, Jan 31 2011
(PARI) is(n)=isprime(24*n+1) \\ Charles R Greathouse IV, Feb 20 2017
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Parthasarathy Nambi, Oct 21 2005
EXTENSIONS
More terms from Christian G. Bower, Jan 06 2006
STATUS
approved