login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A262656
Base-10 representation of the primes at A262655.
3
5, 67, 1699, 243479, 99464527, 11480698847, 5585339988859, 135071996601571, 224232098281435141, 263944947807498977479, 32288380759169071350959, 381031362411461360978228323, 17534309533326861798094235120707, 93027357395687656901633495854438781
OFFSET
1,1
LINKS
EXAMPLE
n A262655(n) base-10 representation
1 5 5
2 151 67
3 11511 1699
MATHEMATICA
s = {5}; base = 6; 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 (* A262655 *)
Map[FromDigits[ToString[#], base] &, s] (* A262656 *)
(* Peter J. C. Moses, Sep 01 2015 *)
CROSSREFS
Cf. A262655.
Sequence in context: A123034 A166619 A323208 * A293849 A244589 A113064
KEYWORD
nonn,easy,base
AUTHOR
Clark Kimberling, Oct 27 2015
STATUS
approved