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!)
A287304 Primes that can be generated by the concatenation in base 5, in ascending order, of two consecutive integers read in base 10. 0

%I #10 Nov 25 2020 19:24:50

%S 7,13,19,131,157,313,443,521,547,599,3529,3907,4159,4663,4789,5167,

%T 5419,5923,6301,6427,6553,6679,7057,7309,7561,7687,8191,8317,8443,

%U 8821,9199,9829,10333,10459,10711,10837,11467,11593,11719,11971,12097,12601,12853,12979

%N Primes that can be generated by the concatenation in base 5, in ascending order, of two consecutive integers read in base 10.

%e 1 and 2 in base 5 are 1 and 2 and concat(1,2) = 12 in base 10 is 7;

%e 6 and 7 in base 5 are 11 and 12 and concat(11,12) = 1112 in base 10 is 157.

%p with(numtheory): P:= proc(q,h) local a,b,c,d,k,n; a:=convert(q+1,base,h); b:=convert(q,base,h); c:=[op(a),op(b)]; d:=0; for k from nops(c) by -1 to 1 do d:=h*d+c[k]; od; if isprime(d) then d; fi; end: seq(P(i,5),i=1..1000);

%t With[{b = 5}, Select[Map[FromDigits[Flatten@ IntegerDigits[#, b], b] &, Partition[Range@ 120, 2, 1]], PrimeQ]] (* _Michael De Vlieger_, May 23 2017 *)

%t Select[FromDigits[Flatten[#],5]&/@Partition[IntegerDigits[Range[150],5],2,1],PrimeQ] (* _Harvey P. Dale_, Nov 25 2020 *)

%Y Cf. A000040, A030458.

%K nonn,base,easy

%O 1,1

%A _Paolo P. Lava_, May 23 2017

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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)