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.

A070872 Numbers k such that A070871(k) = k.

Original entry on oeis.org

1, 2, 6, 66, 216, 1159, 2184
Offset: 1

Views

Author

J. H. Conway, May 17 2002

Keywords

Comments

Could be called nutritionally balanced numbers.

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := a[n] = If[ OddQ[n], a[n/2 - 1/2], a[n/2] + a[n/2 - 1]]; Do[ If[ a[n]*a[n - 1] == n, Print[n]], {n, 1, 5*10^6}]

Extensions

More terms from David W. Wilson, May 17 2002