login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A019551 a(n) is the concatenation of n and 3n. 9
13, 26, 39, 412, 515, 618, 721, 824, 927, 1030, 1133, 1236, 1339, 1442, 1545, 1648, 1751, 1854, 1957, 2060, 2163, 2266, 2369, 2472, 2575, 2678, 2781, 2884, 2987, 3090, 3193, 3296, 3399, 34102, 35105, 36108 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Sylvester Smith, A Set of Conjectures on Smarandache Sequences, Bulletin of Pure and Applied Sciences, (Bombay, India), Vol. 15 E (No. 1), 1996, pp. 101-107.
MAPLE
a:=n->n*10^floor(log10(3*n)+1)+3*n: seq(a(n), n=1..50); # Muniru A Asiru, Jun 23 2018
MATHEMATICA
nxt[n_]:=Module[{idn=IntegerDigits[n], idn3=IntegerDigits[3n]}, FromDigits[Join[idn, idn3]]]; Array[nxt, 100] (* Vincenzo Librandi, Feb 04 2014 *)
Table[n*10^IntegerLength[3n]+3n, {n, 40}] (* Harvey P. Dale, Apr 24 2022 *)
PROG
(Magma) [Seqint(Intseq(3*n) cat Intseq(n)): n in [1..50]]; // Vincenzo Librandi, Feb 04 2014
CROSSREFS
Cf. concatenation of n and k*n: A020338 (k=1), A019550 (k=2), this sequence (k=3), A019552 (k=4), A019553 (k=5), A009440 (k=6), A009441 (k=7), A009470 (k=8), A009474 (k=9).
Sequence in context: A033025 A044838 A033010 * A098961 A033897 A005029
KEYWORD
nonn,base,less,easy
AUTHOR
R. Muller
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 1 23:54 EDT 2024. Contains 372178 sequences. (Running on oeis4.)