cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A175605 a(n) = concatenation of n^3 with itself.

Original entry on oeis.org

11, 88, 2727, 6464, 125125, 216216, 343343, 512512, 729729, 10001000, 13311331, 17281728, 21972197, 27442744, 33753375, 40964096, 49134913, 58325832, 68596859, 80008000, 92619261, 1064810648, 1216712167, 1382413824, 1562515625
Offset: 1

Views

Author

Vincenzo Librandi, Nov 15 2010

Keywords

Examples

			Concatenation 1 and 1=11; 8 and 8=88; 27 and 27=2727; etc.
		

Crossrefs

Cf. A020338.

Programs

  • Magma
    [Seqint(Intseq(n^3) cat Intseq(n^3)): n in [1..40]]; // Vincenzo Librandi, Jan 01 2015
  • Mathematica
    Table[FromDigits[Join[IntegerDigits[n^3], IntegerDigits[n^3]]], {n, 40}] (* Vincenzo Librandi, Jan 01 2015 *)