%I #30 Sep 08 2022 08:46:06
%S 21,42,63,84,105,126,147,168,189,2010,2211,2412,2613,2814,3015,3216,
%T 3417,3618,3819,4020,4221,4422,4623,4824,5025,5226,5427,5628,5829,
%U 6030,6231,6432,6633,6834,7035,7236,7437,7638,7839,8040,8241,8442,8643,8844,9045
%N 2n concatenated with n.
%C All terms are divisible by 3. - _Michel Marcus_, Sep 21 2015
%H Vincenzo Librandi, <a href="/A235497/b235497.txt">Table of n, a(n) for n = 1..1000</a>
%F a(n) = 2*n*10^floor(log_10(n) + 1) + n.
%t nxt[n_] := Module[{idn = IntegerDigits[n], idn2 = IntegerDigits[2 n]}, FromDigits[Join[idn2, idn]]]; Array[nxt, 50] (* Librandi *)
%t Table[FromDigits[Join[IntegerDigits[2n], IntegerDigits[n]]], {n, 40}] (* _Alonso del Arte_, Sep 13 2014 *)
%o (Magma) [Seqint(Intseq(n) cat Intseq(2*n)): n in [1..50]];
%o (Maxima) makelist(2*n*10^floor(log(n)/log(10) + 1) + n,n,50); /* _Bruno Berselli_, Feb 06 2014, using the closed form added from _Alois P. Heinz_ on Feb 05 2014 */
%o (PARI) a(n) = eval(Str(2*n, n)); \\ _Michel Marcus_, Sep 21 2015
%Y Cf. A019550.
%K nonn,base,easy
%O 1,1
%A _Vincenzo Librandi_, Feb 04 2014