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.

A070789 Integers n such that the 'Reverse and Add!' trajectory of n joins the trajectory of 1.

Original entry on oeis.org

1, 2, 4, 8, 16, 25, 34, 43, 52, 59, 61, 68, 70, 77, 86, 95, 104, 109, 151, 154, 155, 157, 203, 208, 209, 250, 253, 254, 256, 302, 307, 308, 352, 353, 355, 401, 406, 407, 409, 451, 452, 454, 500, 505, 506, 508, 550, 551, 553, 604, 605, 607, 650, 652, 703, 704
Offset: 1

Views

Author

Klaus Brockhaus, May 07 2002

Keywords

Examples

			The trajectory of 2 is part of the trajectory of 1; the trajectory of 401 joins the trajectory of 1 at 1111 after 3 steps.
		

Crossrefs

Programs

  • Mathematica
    limit = 10^3; x = NestList[ # + IntegerReverse[#] &, 1, limit];
    Select[Range[704],
     Intersection[NestList[ # + IntegerReverse[#] &, #, limit],
    x] != {} &] (* Robert Price, Oct 20 2019 *)