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.

A239463 a(n) = A239460(n) / n^2.

Original entry on oeis.org

11, 12, 103, 104, 1005, 1006, 1007, 1008, 1009, 10010, 10011, 10012, 10013, 10014, 10015, 10016, 10017, 10018, 10019, 10020, 10021, 100022, 100023, 100024, 100025, 100026, 100027, 100028, 100029, 100030, 100031, 100032, 100033, 100034, 100035, 100036, 100037
Offset: 1

Views

Author

Colin Barker, Mar 19 2014

Keywords

Examples

			a(9) = 1009 because A239460(9)/9^2 = 81729/81 = 1009.
		

Crossrefs

Programs

  • Mathematica
    Table[ToExpression[ToString[n^2] <> ToString[n^3]]/n^2, {n, 1, 30}] (* Vaclav Kotesovec, Mar 24 2014 *)
  • PARI
    vector(100, n, eval(Str(n^2, n^3))/n^2)