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.

A171614 Numbers n with property that (n^2 + sum of the digits of n^2) is even.

Original entry on oeis.org

0, 1, 2, 3, 5, 7, 8, 9, 14, 15, 17, 20, 21, 22, 24, 25, 29, 36, 37, 39, 42, 45, 46, 47, 49, 51, 53, 54, 58, 61, 63, 65, 66, 67, 68, 72, 73, 74, 77, 78, 79, 80, 83, 84, 87, 88, 89, 91, 92, 93, 96, 104, 105, 107, 108, 109, 110, 111, 112, 113, 115, 117, 119, 124, 125, 127, 128
Offset: 1

Views

Author

Zak Seidov, Dec 13 2009

Keywords

Comments

Or, n's such that A171613(n) is even.

Crossrefs

Programs

  • Mathematica
    Union@Table[If[EvenQ[n^2+Total[IntegerDigits[n^2]]],n,0],{n,0,200}]
    Select[Range[0,200],EvenQ[#^2+Total[IntegerDigits[#^2]]]&] (* Harvey P. Dale, Apr 01 2019 *)