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.

A239461 Concatenation of n^3 and n^2.

Original entry on oeis.org

11, 84, 279, 6416, 12525, 21636, 34349, 51264, 72981, 1000100, 1331121, 1728144, 2197169, 2744196, 3375225, 4096256, 4913289, 5832324, 6859361, 8000400, 9261441, 10648484, 12167529, 13824576, 15625625, 17576676, 19683729, 21952784, 24389841, 27000900
Offset: 1

Views

Author

Colin Barker, Mar 19 2014

Keywords

Comments

a(n) is divisible by n^2.

Examples

			a(9) = 72981 because 729 = 9^3 and 81 = 9^2.
		

Crossrefs

Programs

  • Mathematica
    Table[ToExpression[ToString[n^3]<>ToString[n^2]],{n,1,30}] (* Vaclav Kotesovec, Mar 24 2014 *)
    Table[FromDigits[Flatten[IntegerDigits/@{n^3,n^2}]],{n,30}] (* Harvey P. Dale, Nov 28 2024 *)
  • PARI
    vector(100, n, eval(Str(n^3, n^2)))