This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A182344 #14 Jan 10 2013 10:15:36 %S A182344 3,19,4099,65539,234259,456979,614659,1336339,3748099,14776339, %T A182344 21381379,33362179,45212179,71639299,116985859,146410003,193877779, %U A182344 268435459,322417939,759333139,1146228739,1664966419,2019963139 %N A182344 Primes of the form n^4 + 3. %H A182344 Harvey P. Dale, <a href="/A182344/b182344.txt">Table of n, a(n) for n = 1..1000</a> %e A182344 3 = 0^4 + 3; 19 = 2^4 + 3. %p A182344 # choose N large, then S is the desired set %p A182344 f:=n->n^4 + 3: %p A182344 S:={}: %p A182344 for n from 0 to N do if(isprime(f(n))) then S:=S union {f(n)}: fi: od: %t A182344 Select[Range[0,250]^4+3,PrimeQ] (* _Harvey P. Dale_, Jan 10 2013 *) %Y A182344 Cf. A037896. %K A182344 nonn %O A182344 1,1 %A A182344 _Patrick Devlin_, Apr 25 2012