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.

A029977 Primes that are palindromic in base 9.

This page as a plain text file.
%I A029977 #14 Aug 11 2024 14:41:30
%S A029977 2,3,5,7,109,127,173,191,227,337,373,419,601,619,683,701,719,6967,
%T A029977 7129,7867,8443,9181,9343,10333,10657,11071,11971,12547,13033,13367,
%U A029977 13691,14843,15581,16319,16481,17957,18119,18371,19433,27067,27967
%N A029977 Primes that are palindromic in base 9.
%H A029977 John Cerkan, <a href="/A029977/b029977.txt">Table of n, a(n) for n = 1..10000</a>
%H A029977 P. De Geest, <a href="https://www.worldofnumbers.com/palpri.htm">World!Of Palindromic Primes</a>
%t A029977 f[n_]:=FromDigits[RealDigits[n,9][[1]]]==FromDigits[Reverse[RealDigits[n,9][[1]]]]; lst={}; Do[p=Prime[n]; If[f[p],AppendTo[lst,p]],{n,8!}]; lst (* _Vladimir Joseph Stephan Orlovsky_, Aug 10 2009 *)
%K A029977 nonn,base
%O A029977 1,1
%A A029977 _Patrick De Geest_