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.

A029981 Primes that are palindromic in base 14.

This page as a plain text file.
%I A029981 #14 Aug 11 2024 14:41:30
%S A029981 2,3,5,7,11,13,197,211,239,281,337,379,619,647,661,773,1013,1069,1097,
%T A029981 1153,1787,1801,1871,1913,2237,2251,2293,2617,2659,2687,2729,39397,
%U A029981 41959,42743,43331,43933,44129,45697,45893,46691,47279,48259
%N A029981 Primes that are palindromic in base 14.
%H A029981 John Cerkan, <a href="/A029981/b029981.txt">Table of n, a(n) for n = 1..10000</a>
%H A029981 P. De Geest, <a href="https://www.worldofnumbers.com/palpri.htm">World!Of Palindromic Primes</a>
%t A029981 f[n_]:=FromDigits[RealDigits[n,14][[1]]]==FromDigits[Reverse[RealDigits[n,14][[1]]]]; lst={}; Do[p=Prime[n]; If[f[p],AppendTo[lst,p]],{n,8!}]; lst (* _Vladimir Joseph Stephan Orlovsky_, Aug 10 2009 *)
%K A029981 nonn,base
%O A029981 1,1
%A A029981 _Patrick De Geest_