OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
n^4+1=p*q*r*s where p, q, r, s are primes (not necessarily distinct).
EXAMPLE
43 is OK because 43^4+1=3418802=2*17*193*521 (product of four primes).
MATHEMATICA
Select[Range[500], Sum[FactorInteger[ #^4 + 1][[i]][[2]], {i, 1, Length[FactorInteger[ #^4 + 1]]}] == 4 &] (* Stefan Steinerberger, Mar 09 2006 *)
PROG
(PARI) is(n)=bigomega(n^4+1)==4 \\ Charles R Greathouse IV, Oct 11 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Mar 08 2006
STATUS
approved