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.

A032760 Take list of squares, move left digit of each term to end of previous term.

Original entry on oeis.org

0, 1, 4, 9, 1, 62, 53, 64, 96, 48, 11, 1, 211, 441, 691, 962, 252, 562, 893, 243, 614, 4, 414, 845, 295, 766, 256, 767, 297, 848, 419, 9, 611, 241, 891, 1561, 2251, 2961, 3691, 4441, 5211, 6001, 6811, 7641, 8491, 9362, 252, 1162, 2092, 3042, 4012, 5002, 6012
Offset: 1

Views

Author

Patrick De Geest, May 15 1998

Keywords

Crossrefs

Programs

  • Haskell
    a032760 n = a032760_list !! n
    a032760_list = 0 : map read (zipWith (++) vs (tail us)) :: [Integer]
       where (us,vs) = unzip $ map ((splitAt 1) . show) a000290_list
    -- Reinhard Zumkeller, Oct 10 2013