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.

A063063 'Reverse and Add!' trajectory of 10563.

Original entry on oeis.org

10563, 47064, 93138, 176277, 948948, 1798797, 9777768, 18455547, 93011028, 175022067, 935242638, 1771485177, 9487326948, 17983564797, 97730103768, 184460207547, 930162272028, 1750434533067, 9353788873638, 17717577747177
Offset: 0

Views

Author

Klaus Brockhaus, Jul 07 2001

Keywords

Examples

			a(1) = 10563 + 36501 = 47064.
		

Crossrefs

Programs

  • ARIBAS
    m := 10563; stop := 25; c := 0; rev := int_reverse(m); while m <> rev and c < stop do inc(c); write(m," "); m := m + rev; rev := int_reverse(m); end;
    
  • Haskell
    a063063 n = a063063_list !! n
    a063063_list = iterate a056964 10563 -- Reinhard Zumkeller, Sep 22 2011
  • Mathematica
    NestList[# + FromDigits[Reverse[IntegerDigits[#]]]&, 10563, 30] (* Vincenzo Librandi, May 03 2014 *)