A006278 a(n) is the product of the first n primes congruent to 1 (mod 4).
5, 65, 1105, 32045, 1185665, 48612265, 2576450045, 157163452745, 11472932050385, 1021090952484265, 99045822390973705, 10003628061488344205, 1090395458702229518345, 123214686833351935572985
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 1..100
- Eric Weisstein's World of Mathematics, Pythagorean Triple
Programs
-
Mathematica
maxN=15; pLst={}; k=0; While[Length[pLst]
Harvey P. Dale, Jun 16 2013 *) -
PARI
tree(v)=my(t=#v); if(t<4, factorback(v), tree(v[1..t\2])*tree(v[t\2+1..t])); a(n,x=9*n\4+2)=my(P=select(p->p%4==1, primes(x))); if(#P
Charles R Greathouse IV, Jan 08 2018
Formula
a(n) = Product_{i=1..n} A002144(i). - Alois P. Heinz, Mar 01 2021
Comments