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!)
A263654 Values of k such that 3^k is a concatenation of two primes. 0
3, 5, 6, 9, 10, 15, 17, 19, 28, 35, 42, 47, 51, 55, 56, 58, 63, 73, 80, 83, 85, 87, 94, 100, 112, 127, 129, 132, 198, 202, 268, 282, 287, 299, 316, 325, 345, 362, 400, 412, 447, 459, 519, 525, 549, 620, 631, 727, 756, 854, 856, 892, 1031, 1038, 1140, 1175, 1241 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
3^3 = 27 = concat(2,7);
3^5 = 243 = concat(2,43);
3^6 = 729 = concat(7,29);
3^9 = 19683 = concat(19,683).
MAPLE
with(numtheory): P:= proc(q) local a, k, n, ok; a:=0;
for n from 1 to q do ok:=0;
for k from 1 to ilog10(3^n) do if isprime(trunc(3^n/10^k)) and isprime(3^n mod 10^k) then ok:=1;
break; fi; od; if ok=1 then a:=a+1; lprint(a, n); fi; od; end: P(10^10);
CROSSREFS
Cf. A255898.
Sequence in context: A094598 A367334 A329003 * A122194 A225005 A053091
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Oct 23 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 16 07:57 EDT 2024. Contains 371698 sequences. (Running on oeis4.)