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.

A193582 Persistence of n for sort-and-subtract (A193581).

Original entry on oeis.org

0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 3, 3, 3, 2, 2, 2
Offset: 0

Views

Author

Reinhard Zumkeller, Aug 10 2011

Keywords

Comments

Number of sort-and-subtract steps to reach 0 when starting with n.

Crossrefs

Cf. A004185.

Programs

  • Haskell
    a193582 n = length $ takeWhile (> 0) $ iterate a193581 n
    a193582_list = map a193582 [0..]