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.

A171613 a(n) = n^2 + sum of the digits of n^2.

Original entry on oeis.org

0, 2, 8, 18, 23, 32, 45, 62, 74, 90, 101, 125, 153, 185, 212, 234, 269, 308, 333, 371, 404, 450, 500, 545, 594, 638, 695, 747, 803, 854, 909, 977, 1031, 1107, 1169, 1235, 1314, 1388, 1457, 1530, 1607, 1697, 1782, 1871, 1955, 2034, 2126, 2222, 2313, 2408, 2507
Offset: 0

Views

Author

Zak Seidov, Dec 13 2009

Keywords

Comments

Subsequence of A062028 (n + sum of the digits of n).

Crossrefs

Programs

  • Mathematica
    Table[n^2+Total[IntegerDigits[n^2]],{n,0,100}]