login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A001703
Decimal concatenation of n, n+1, and n+2.
12
12, 123, 234, 345, 456, 567, 678, 789, 8910, 91011, 101112, 111213, 121314, 131415, 141516, 151617, 161718, 171819, 181920, 192021, 202122, 212223, 222324, 232425, 242526, 252627, 262728, 272829, 282930, 293031, 303132, 313233, 323334, 333435, 343536, 353637, 363738
OFFSET
0,1
COMMENTS
All terms are divisible by 3. Every third term starting with a(2) is divisible by 9. - Alonso del Arte, May 27 2013
FORMULA
The portion of the sequence with all three numbers having d digits - i.e., n in 10^(d-1)..10^d-3 - is in arithmetic sequence: a(n) = (10^(2*d)+10^d+1)*n + (10^d+2). - Franklin T. Adams-Watters, Oct 07 2011
EXAMPLE
a(8) = 8910 since the three consecutive numbers starting with 8 are 8, 9, 10, and these concatenate to 8910. (This is the first term that differs from A193431).
MAPLE
read(transforms) :
A001703 := proc(n)
digcatL([n, n+1, n+2]) ;
end proc:
seq(A001703(n), n=1..20) ; # R. J. Mathar, Mar 29 2017
# Third Maple program:
a:= n-> parse(cat(n, n+1, n+2)):
seq(a(n), n=0..50); # Alois P. Heinz, Mar 29 2017
MATHEMATICA
concat3Nums[n_] := FromDigits@ Flatten@ IntegerDigits[{n, n + 1, n + 2}]; Array[concat3Nums, 25] (* Robert G. Wilson v *)
PROG
(PARI) a(n)=eval(Str(n, n+1, n+2)) \\ Charles R Greathouse IV, Oct 08 2011
(Python) for n in range(100): print(int(str(n)+str(n+1)+str(n+2))) # David F. Marrs, Sep 18 2018
CROSSREFS
Cf. A074991.
For concatenations of exactly k consecutive integers see A000027 (k=1), A127421 (k=2), A279204 (k=4). For 2 or more see A035333.
See also A127422, A127423, A127424.
Sequence in context: A078189 A278982 A167208 * A127422 A278983 A079847
KEYWORD
nonn,base,easy
AUTHOR
mag(AT)laurel.salles.entpe.fr
EXTENSIONS
Initial term 12 added and offset changed to 0 at the suggestion of R. J. Mathar. - N. J. A. Sloane, Mar 29 2017
STATUS
approved