OFFSET
1,1
COMMENTS
a(n)+2 is a prime for n=1,2,3,4,8,10,12,17,19,22,23,53.
Product of first n primes that are also Gaussian primes; product of first n primes that are not of the form x^2+y^2.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..100
MATHEMATICA
maxN=15; pLst={}; k=0; While[Length[pLst]<maxN, k++; If[PrimeQ[4k-1], AppendTo[pLst, 4k-1]]]; lst=Drop[FoldList[Times, 1, pLst], 1]
PROG
(PARI) a(n)=my(t=1); forprime(p=2, , if(p%4==3, t*=p; if(n--<1, return(t)))) \\ Charles R Greathouse IV, Mar 09 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
T. D. Noe, Dec 01 2002
STATUS
approved