OFFSET
1,1
COMMENTS
Except for the first 3 terms, a subsequence of A057199 (see comment in A057199). - Chai Wah Wu, Sep 16 2019
All terms are primes of the form 4*k + 1 (A002144), because terms of A003154 are of the form 12*k + 1. - John Elias, Jan 25 2021
LINKS
Zak Seidov, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Array[6*#*(#-1)+1 &, 100], PrimeQ] (* Paolo Xausa, Mar 05 2024 *)
PROG
(PARI) for(n=1, 150, s=6*n*(n-1)+1; if(isprime(s), print1(s", ")))
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Jun 13 2003
STATUS
approved