OFFSET
1,1
EXAMPLE
1 and 2 in base 3 are 1 and 2 and concat(2,1) = 21 in base 10 is 7;
2 and 3 in base 3 are 2 and 10 and concat(10,2) = 102 in base 10 is 11.
MAPLE
with(numtheory): P:= proc(q, h) local a, b, c, d, k, n; if q=0 then 3 else 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; fi; end: seq(P(i, 3), i=0..1000);
MATHEMATICA
With[{b = 3}, Select[Map[FromDigits[Flatten@ IntegerDigits[#, b], b] &, Reverse /@ Partition[Range[0, 150], 2, 1]], PrimeQ]] (* Michael De Vlieger, May 23 2017 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Paolo P. Lava, May 23 2017
STATUS
approved