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.

This page as a plain text file.
%I A032760 #8 Mar 09 2015 09:35:21
%S A032760 0,1,4,9,1,62,53,64,96,48,11,1,211,441,691,962,252,562,893,243,614,4,
%T A032760 414,845,295,766,256,767,297,848,419,9,611,241,891,1561,2251,2961,
%U A032760 3691,4441,5211,6001,6811,7641,8491,9362,252,1162,2092,3042,4012,5002,6012
%N A032760 Take list of squares, move left digit of each term to end of previous term.
%H A032760 Reinhard Zumkeller, <a href="/A032760/b032760.txt">Table of n, a(n) for n = 1..10000</a>
%o A032760 (Haskell)
%o A032760 a032760 n = a032760_list !! n
%o A032760 a032760_list = 0 : map read (zipWith (++) vs (tail us)) :: [Integer]
%o A032760    where (us,vs) = unzip $ map ((splitAt 1) . show) a000290_list
%o A032760 -- _Reinhard Zumkeller_, Oct 10 2013
%Y A032760 Cf. A032759-A032764.
%Y A032760 Cf. A000290.
%K A032760 nonn,base
%O A032760 1,3
%A A032760 _Patrick De Geest_, May 15 1998