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.

A154535 Numbers n such that n^16+(n+1)^16 is a prime.

This page as a plain text file.
%I A154535 #12 Sep 08 2022 08:45:40
%S A154535 1,3,5,6,7,14,21,31,34,41,45,56,66,70,75,80,89,93,96,101,116,127,142,
%T A154535 149,162,167,171,176,185,190,192,194,199,215,218,223,225,231,238,239,
%U A154535 264,269,275,313,321,326,374,375,386,404,410,416,418,419,427,436,437
%N A154535 Numbers n such that n^16+(n+1)^16 is a prime.
%H A154535 Vincenzo Librandi, <a href="/A154535/b154535.txt">Table of n, a(n) for n = 1..1000</a>
%t A154535 lst={}; Do[If[PrimeQ[n^16+(n+1)^16], AppendTo[lst, n]], {n, 500}]; lst (* _Vincenzo Librandi_, Aug 31 2012 *)
%t A154535 Select[Range[500], PrimeQ[#^16 + (# + 1)^16] &] (* _Bruno Berselli_, Aug 31 2012 *)
%o A154535 (Magma) [n: n in [1..600] |  IsPrime(n^16+(n+1)^16 )]; // _Vincenzo Librandi_, Aug 31 2012
%K A154535 nonn,easy
%O A154535 1,2
%A A154535 _Vincenzo Librandi_, Jan 11 2009