A009440 a(n) is the concatenation of n and 6n.
16, 212, 318, 424, 530, 636, 742, 848, 954, 1060, 1166, 1272, 1378, 1484, 1590, 1696, 17102, 18108, 19114, 20120, 21126, 22132, 23138, 24144, 25150, 26156, 27162, 28168, 29174, 30180, 31186, 32192, 33198, 34204, 35210, 36216, 37222, 38228, 39234, 40240
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Magma
[Seqint(Intseq(6*n) cat Intseq(n)): n in [1..50]]; // Vincenzo Librandi, Feb 04 2014
-
Mathematica
nxt[n_]:=Module[{idn=IntegerDigits[n], idn6=IntegerDigits[6n]}, FromDigits[Join[idn, idn6]]]; Array[nxt, 100] (* Vincenzo Librandi, Feb 04 2014 *) Table[n*10^IntegerLength[6n]+6n,{n,40}] (* Harvey P. Dale, Jul 21 2020 *)