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.

A047811 Numbers n >= 4 that are not palindromic in any base b, 2 <= b <= n/2.

This page as a plain text file.
%I A047811 #32 Jun 02 2019 11:26:35
%S A047811 4,6,11,19,47,53,79,103,137,139,149,163,167,179,223,263,269,283,293,
%T A047811 311,317,347,359,367,389,439,491,563,569,593,607,659,739,827,853,877,
%U A047811 977,983,997,1019,1049,1061,1187,1213,1237,1367,1433,1439,1447,1459
%N A047811 Numbers n >= 4 that are not palindromic in any base b, 2 <= b <= n/2.
%C A047811 Sequence A016038 is identical up to four additional terms: 0, 1, 2, 3; see there for more information.
%C A047811 Note that no prime p is palindromic in base b for the range sqrt(p) < b < p-1. Hence to find non-palindromic primes, we need only examine bases up to floor(sqrt(p)), which greatly reduces the computational effort required. - _T. D. Noe_, Mar 01 2008
%C A047811 This sequence is mentioned in the paper by Richard Guy, in which he reports on unsolved problems. This problem came from Mario Borelli and Cecil B. Mast. The paper poses two questions about these numbers: (1) Can palindromic or nonpalindromic primes be otherwise characterized? and (2) What is the cardinality, or the density, of the set of palindromic primes? Of the set of nonpalindromic primes? - _T. D. Noe_, Apr 17 2011
%H A047811 T. D. Noe, <a href="/A047811/b047811.txt">Table of n, a(n) for n = 1..10000</a>
%H A047811 R. K. Guy, <a href="https://www.jstor.org/stable/2325149">Conway's RATS and other reversals</a>, Amer. Math. Monthly, 96 (1989), 425-428.
%F A047811 a(n) = A016038(n+4) for all n. - _M. F. Hasler_, Sep 08 2015
%t A047811 Select[Range[4,1500],And@@(#!=Reverse[#]&/@Table[IntegerDigits[#,b],{b,2,#/2}])&] (* _Harvey P. Dale_, May 22 2013 *)
%o A047811 (PARI) is(n)=!for(b=2,n\2,Vecrev(d=digits(n,b))==d&&return)&&n>3 \\ _M. F. Hasler_, Sep 08 2015
%Y A047811 Cf. A016038, A050812, A050813.
%Y A047811 Cf. A135549.
%K A047811 nonn,base,easy,nice
%O A047811 1,1
%A A047811 _N. J. A. Sloane_
%E A047811 Extended (and corrected) by _Patrick De Geest_, Oct 15 1999
%E A047811 Minor edits by _M. F. Hasler_, Sep 08 2015