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.

A239460 Concatenation of n^2 and n^3.

Original entry on oeis.org

11, 48, 927, 1664, 25125, 36216, 49343, 64512, 81729, 1001000, 1211331, 1441728, 1692197, 1962744, 2253375, 2564096, 2894913, 3245832, 3616859, 4008000, 4419261, 48410648, 52912167, 57613824, 62515625, 67617576, 72919683, 78421952, 84124389, 90027000
Offset: 1

Views

Author

Colin Barker, Mar 19 2014

Keywords

Comments

a(n) is divisible by n^2.

Examples

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

Crossrefs

Programs

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