login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A156026
Lesser of twin primes of the form k^1 + k^2 + k^3 + k^4 - 1.
2
3, 29, 22619, 837929, 3835259, 6377549, 16007039, 30397349, 147753209, 745720139, 987082979, 2439903209, 3276517919, 4178766089, 11468884079, 58714318139, 72695416559, 418374010739, 788251653689, 829180295189
OFFSET
1,1
COMMENTS
The corresponding values of k are 1, 2, 12, 30, 44, ... (A156021).
LINKS
EXAMPLE
29 is a term since 2 + 2^2 + 2^3 + 2^4 - 1 = 29 and 2 + 2^2 + 2^3 + 2^4 + 1 = 31 are twin primes.
MATHEMATICA
lst={}; Do[p=(n^1+n^2+n^3+n^4); If[PrimeQ[p1=p-1]&&PrimeQ[p2=p+1], AppendTo[lst, p1]], {n, 8!}]; lst
Select[Table[n+n^2+n^3+n^4-1, {n, 1000}], AllTrue[{#, #+2}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Dec 17 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved