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.

A155023 Values of n such that n^a-+a are primes, a=11.

This page as a plain text file.
%I A155023 #4 Jun 20 2013 16:24:26
%S A155023 0,1770,10182,11700,12090,16548,24192,27570,29142,29148,60648,62790,
%T A155023 63120,97110,104502,115140,116718,119682,122130,127728,147210,151848,
%U A155023 170292,189318,190452,192738
%N A155023 Values of n such that n^a-+a are primes, a=11.
%t A155023 a={};Do[m=n^11;If[PrimeQ[m-11]&&PrimeQ[m+11],AppendTo[a,n]],{n,0,9!}];a
%t A155023 Select[Range[0,200000],And@@PrimeQ[#^11+{11,-11}]&] (* _Harvey P. Dale_, Jun 20 2013 *)
%Y A155023 Cf. A108701, A143904, A155021, A155022
%K A155023 nonn
%O A155023 1,2
%A A155023 _Vladimir Joseph Stephan Orlovsky_, Jan 19 2009