login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A262641 Minimal nested palindromic base-5 primes with seed 1; see Comments. 3
1, 111, 41114, 1411141, 20141114102, 12120141114102121, 24012120141114102121042, 142401212014111410212104241, 41424012120141114102121042414, 314142401212014111410212104241413, 4131414240121201411141021210424141314, 30413141424012120141114102121042414131403 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Using only base-5 digits 0,1,2,3,4, let s be a palindrome and put a(1) = s. Let a(2) be the least palindromic prime having s in the middle; for n > 2, let a(n) be the least palindromic prime have a(n-1) in the middle. Then (a(n)) is the sequence of minimal nested palindromic base-5 primes with seed s.
LINKS
EXAMPLE
a(3) = 41114 is the least base-5 prime having a(2) = 111 in its middle.
Triangular format:
1
111
41114
1411141
20141114102
12120141114102121
24012120141114102121042
MATHEMATICA
s = {1}; base = 5; z = 20; Do[NestWhile[# + 1 &, 1, ! PrimeQ[tmp = FromDigits[Join[#, IntegerDigits[Last[s]], Reverse[#]] &[IntegerDigits[#, base]], base]] &];
AppendTo[s, FromDigits[IntegerDigits[tmp, base]]], {z}]; s (* A262641 *)
Map[FromDigits[ToString[#], base] &, s] (* A262642 *)
(* Peter J. C. Moses, Sep 01 2015 *)
CROSSREFS
Cf. A261881 (base 10), A262627, A262642.
Sequence in context: A225374 A015262 A201430 * A145698 A362920 A244845
KEYWORD
nonn,easy,base
AUTHOR
Clark Kimberling, Oct 24 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)