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!)
A053062 Concatenate n, 2n, 3n, ... nn. 2
1, 24, 369, 481216, 510152025, 61218243036, 7142128354249, 816243240485664, 91827364554637281, 102030405060708090100, 112233445566778899110121, 1224364860728496108120132144, 13263952657891104117130143156169, 14284256708498112126140154168182196 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
Felice Russo, A set of new Smarandache functions, sequences and conjectures in number theory, American Research Press 2000.
LINKS
MAPLE
a:= n-> parse(cat(j*n$j=1..n)):
seq(a(n), n=1..14); # Alois P. Heinz, Jan 24 2021
PROG
(Python)
def a(n): return int("".join(str(n*i) for i in range(1, n+1)))
print([a(n) for n in range(1, 15)]) # Michael S. Branicky, Jan 24 2021
CROSSREFS
Cf. A061082.
Sequence in context: A028074 A028111 A168304 * A028060 A026326 A028043
KEYWORD
easy,base,nonn,less
AUTHOR
Felice Russo, Feb 25 2000
EXTENSIONS
More terms from James A. Sellers, Feb 28 2000
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 April 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)