OFFSET
1,2
COMMENTS
For n = {2, 3, 13, 16, 19, 21, 67}, a(n) is prime (when n <= 2800).
LINKS
F. Smarandache, Sequences of Numbers Involved in Unsolved Problems.
Eric Weisstein's World of Mathematics, Smarandache Sequences
MATHEMATICA
Block[{nn = 18, s}, s = IntegerDigits@ Range[1, nn, 2]; Table[FromDigits@ Flatten@ Join[#, Reverse[If[EvenQ@ n, #, Most@ #] &@ #]] &@ Take[s, Ceiling[n/2]], {n, nn}]] (* Michael De Vlieger, May 23 2017 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
XU Pingya, May 22 2017
STATUS
approved