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.

A032761 Take list of cubes, move left digit of each term to end of previous term.

This page as a plain text file.
%I A032761 #9 Mar 09 2015 09:35:21
%S A032761 0,1,8,2,76,41,252,163,435,127,291,1,3311,7282,1972,7443,3754,964,
%T A032761 9135,8326,8598,9,2611,6481,21671,38241,56251,75761,96832,19522,43892,
%U A032761 70002,97913,27683,59373,93044,28754,66565,6535,48725,93196,40006,89217,40887
%N A032761 Take list of cubes, move left digit of each term to end of previous term.
%H A032761 Reinhard Zumkeller, <a href="/A032761/b032761.txt">Table of n, a(n) for n = 0..10000</a>
%o A032761 (Haskell)
%o A032761 a032761 n = a032761_list !! n
%o A032761 a032761_list = 0 : map read (zipWith (++) vs (tail us)) :: [Integer]
%o A032761    where (us,vs) = unzip $ map ((splitAt 1) . show) a000578_list
%o A032761 -- _Reinhard Zumkeller_, Oct 10 2013
%Y A032761 Cf. A032759-A032764.
%Y A032761 Cf. A000578.
%K A032761 nonn,base,look
%O A032761 0,3
%A A032761 _Patrick De Geest_, May 15 1998