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.

A155022 Values of n such that n^a-+a are primes, a=7.

This page as a plain text file.
%I A155022 #4 Aug 26 2013 11:06:37
%S A155022 0,66,516,3450,7200,8850,12480,16500,18234,18534,19440,21246,26466,
%T A155022 28596,39036,41634,43500,43710,54186,54876,59316,68886,77184,81540,
%U A155022 82134,88044,89064,95796,97530,98610,108294,111864,113160,120534,120696
%N A155022 Values of n such that n^a-+a are primes, a=7.
%t A155022 a={};Do[m=n^7;If[PrimeQ[m-7]&&PrimeQ[m+7],AppendTo[a,n]],{n,0,9!}];a
%t A155022 Select[Range[0,130000],And@@PrimeQ[#^7+{7,-7}]&] (* _Harvey P. Dale_, Aug 26 2013 *)
%Y A155022 Cf. A108701, A143904, A155021
%K A155022 nonn
%O A155022 1,2
%A A155022 _Vladimir Joseph Stephan Orlovsky_, Jan 19 2009