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.

A083979 Smallest palindromic prime containing exactly n 8's.

Original entry on oeis.org

181, 18181, 78887, 1880881, 9888889, 188868881, 188888881, 18888588881, 1488888888841, 7888886888887, 3888888888883, 188888858888881, 188888888888881, 38888888088888883, 1688888888888888861, 3888888882888888883, 128888888888888888821
Offset: 1

Views

Author

Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 21 2003

Keywords

Crossrefs

Programs

  • Mathematica
    Table[d = 8; i = 1;
    While[ x = IntegerDigits[Prime[i]];
      x != Reverse[x] || Count[x, d] != n , i++];
    FromDigits[x], {n, 1, 5}]  (* Robert Price, Mar 25 2019 *)
    Module[{prs=Select[Prime[Range[105*10^5]],PalindromeQ]},Table[ SelectFirst[ prs,DigitCount[ #,10,8]==n&],{n,6}]] (* The program generates the first 6 terms of the sequence. *) (* Harvey P. Dale, May 11 2022 *)

Extensions

Corrected and extended by Giovanni Resta, Feb 08 2006