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.

A163592 Numbers n such that n^6 + 545 is prime.

This page as a plain text file.
%I A163592 #29 Apr 03 2023 10:36:11
%S A163592 84,1302,10584,11382,12012,12558,13356,15498,19362,20286,20496,22092,
%T A163592 23142,23772,25452,26418,26502,26544,28644,29274,29778,31374,31962,
%U A163592 35406,36876,37338,39522,40152,40488,41286,42924,43428,45108,46116,47754,47796,48678
%N A163592 Numbers n such that n^6 + 545 is prime.
%H A163592 Arkadiusz Wesolowski, <a href="/A163592/b163592.txt">Table of n, a(n) for n = 1..1000</a>
%H A163592 G. L. Honaker, Jr. and Chris Caldwell, <a href="https://t5k.org/curios/cpage/19149.html">Prime Curios! 545</a>
%t A163592 Select[Range[0, 48678, 2], PrimeQ[#^6 + 545] &] (* _Arkadiusz Wesolowski_, Mar 05 2011 *)
%o A163592 (Magma) [n : n in [0..48678 by 2] | IsPrime(n^6+545)]; // _Arkadiusz Wesolowski_, Mar 05 2011
%o A163592 (PARI) forstep(n=0, 48678, 2, if(isprime(n^6+545), print1(n, ", "))); \\ _Arkadiusz Wesolowski_, Mar 05 2011
%Y A163592 Cf. A133870, A161998, A066386, A126893, A119276.
%K A163592 nonn
%O A163592 1,1
%A A163592 _Arkadiusz Wesolowski_, Aug 01 2009