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.

A002782 Concatenate the natural numbers, then partition into minimal strings so that each term divides the next.

Original entry on oeis.org

1, 2, 34, 5678, 9101112131415161718192021222324252627282930313233343536
Offset: 1

Views

Author

Keywords

Comments

What is the next term? (See A263623.)
a(6), if it exists, has more than 5888833 digits. - Lars Blomberg, Dec 01 2016

Examples

			1 divides 2 divides 34 divides 5678 divides 9101112131415161718192021222324252627282930313233343536.
		

References

  • Letter from the editor, J. Rec. Math., 3 (1970), 40-41.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

See A007908 for a classic sequence of the same ilk.

Programs

  • Haskell
    a002782 n = a002782_list !! (n-1)
    a002782_list = f 1 1 (map toInteger $ tail a007376_list) where
       f x y (d:ds) | mod y x == 0 = y : f y d ds
                    | otherwise    = f x (10*y + d) ds
    -- Reinhard Zumkeller, Dec 17 2011