[go: up one dir, main page]

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”).

A262650
Base-10 representation of the primes at A262649.
3
2, 197, 69313, 8813963, 84621544849, 527772818401391, 6822795350471323, 27886178439493066223, 31708613496145827870113, 43587702672242054520081077, 13602652894439672099923526011, 22768853068939384975328656897381, 715213262078891560583355909701176813
OFFSET
1,1
LINKS
EXAMPLE
n A262649(n) base-10 representation
1 2 2
2 525 197
3 1252521 69313
MATHEMATICA
s = {2}; 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 (* A262649 *)
Map[FromDigits[ToString[#], base] &, s] (* A262650 *)
(* Peter J. C. Moses, Sep 01 2015 *)
CROSSREFS
Cf. A262649.
Sequence in context: A282700 A256410 A174367 * A123100 A033147 A213162
KEYWORD
nonn,easy,base
AUTHOR
Clark Kimberling, Oct 27 2015
STATUS
approved