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!)
A055436 a(n) = concatenation of n^2 and n. 8

%I #19 Sep 08 2022 08:45:01

%S 11,42,93,164,255,366,497,648,819,10010,12111,14412,16913,19614,22515,

%T 25616,28917,32418,36119,40020,44121,48422,52923,57624,62525,67626,

%U 72927,78428,84129,90030,96131,102432,108933,115634,122535,129636

%N a(n) = concatenation of n^2 and n.

%F a(n) = n^2*floor(log_10(n) + 1) + n.

%F a(n) = A055437(n) if 1 <= n < 10, a(n) = A055438(n) if 10 <= n < 100.

%p a:= n-> parse(cat(n*n, n)):

%p seq(a(n), n=1..100); # _Alois P. Heinz_, Jan 03 2015

%t Table[n^2*10^IntegerLength[n] + n, {n, 36}] (* _Jayanta Basu_, Jul 12 2013 *)

%t Table[FromDigits[Join[IntegerDigits[n^2], IntegerDigits[n]]],{n, 40}] (* _Vincenzo Librandi_, Jan 03 2015 *)

%o (Magma) [Seqint(Intseq(n) cat Intseq(n^2)): n in [1..40]]; // _Vincenzo Librandi_, Jan 03 2015

%Y Cf. A053061, A055437 (10n^2+n), A055438 (100n^2+n).

%K base,easy,nonn

%O 1,1

%A _Henry Bottomley_, May 18 2000

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 March 28 04:13 EDT 2024. Contains 371235 sequences. (Running on oeis4.)