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!)
A053061 a(n) is the decimal concatenation of n and n^2. 11
11, 24, 39, 416, 525, 636, 749, 864, 981, 10100, 11121, 12144, 13169, 14196, 15225, 16256, 17289, 18324, 19361, 20400, 21441, 22484, 23529, 24576, 25625, 26676, 27729, 28784, 29841, 30900, 31961, 321024, 331089, 341156, 351225, 361296, 371369, 381444, 391521 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
REFERENCES
Felice Russo, A set of new Smarandache functions, sequences and conjectures in number theory, American Research Press 2000
LINKS
FORMULA
a(n) = n*(10^floor(2*log_10(n) + 1) + n). - Henry Bottomley, May 18 2000
a(n) ~ n^3. - Charles R Greathouse IV, Sep 19 2012
MATHEMATICA
Table[FromDigits[Join[IntegerDigits[n], IntegerDigits[n^2]]], {n, 40}] (* Harvey P. Dale, May 24 2012 *)
PROG
(Magma) [Seqint(Intseq(n^2) cat Intseq(n)): n in [1..40]]; // Vincenzo Librandi, Jan 03 2015
(Python)
def a(n): return int(str(n) + str(n*n))
print([a(n) for n in range(1, 40)]) # Michael S. Branicky, Nov 24 2021
CROSSREFS
Sequence in context: A349487 A098603 A274620 * A055820 A334597 A114167
KEYWORD
easy,nonn,base
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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)