cp's OEIS Frontend

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.

A191589 Primes of the form 3*n^4+12*n^2+2, n > 0.

This page as a plain text file.
%I A191589 #8 Sep 08 2022 08:45:57
%S A191589 17,353,7793,45377,588737,1603073,2131937,2782097,23705153,27488177,
%T A191589 36393857,142457633,156688577,288296417,423617057,780627473,830968337,
%U A191589 938914433,1254730193,5724613457,9150064577,13500386657,15247220033
%N A191589 Primes of the form 3*n^4+12*n^2+2, n > 0.
%C A191589 Prime sums of three consecutive fourth powers, since 3*n^4+12*n^2+2 = (n-1)^4+n^4+(n+1)^4.
%C A191589 Primes in A160827.
%e A191589 2^4+3^4+4^4 = 353 is prime and therefore in the sequence.
%t A191589 lst={};Do[If[PrimeQ[p=(n+1)^4+n^4+ (n-1)^4], AppendTo[lst,p]],{n, 100}];lst
%t A191589 lst={};Do[If[PrimeQ[p=3*n^4+12*n^2+2], AppendTo[lst, p]],{n,100}];lst
%o A191589 (Magma) [ p: n in [0..300] | IsPrime(p) where p is n^4+(n+1)^4+(n+2)^4 ];
%Y A191589 Cf. A160827.
%K A191589 nonn
%O A191589 1,1
%A A191589 _Rafael Parra Machio_, Jun 07 2011