OFFSET
1,1
REFERENCES
F. Smarandache, Sequences of Numbers Involved in Unsolved Problems, Hexis, Phoenix, 2006.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..300
Mihaly Bencze [Beneze] and L. Tutescu, editors, Some Notions and Questions in Number Theory, Vol. II.
M. Fleuren, Smarandache Back Concatenated Primes.
F. Smarandache, Sequences of Numbers Involved in Unsolved Problems.
MATHEMATICA
Join[{s = 2}, Table[s = FromDigits[Flatten[IntegerDigits[{Prime[n], s}]]], {n, 2, 13}]] (* Jayanta Basu, Jul 14 2013 *)
PROG
(Haskell)
a038394 n = a038394_list !! (n-1)
a038394_list = f "" a000040_list where
f xs (q:qs) = (read ys :: Integer) : f ys qs
where ys = show q ++ xs
-- Reinhard Zumkeller, Mar 03 2014
(PARI) a(n) = fromdigits(concat([digits(p) | p<-Vecrev(primes(n))])); \\ Andrew Howroyd, Aug 29 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. I. Petrescu (mipetrescu(AT)yahoo.com)
EXTENSIONS
Offset corrected by Reinhard Zumkeller, Mar 03 2014
STATUS
approved