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.

A032759 Take list of primes, move left digit of each term to end of previous term.

This page as a plain text file.
%I A032759 #9 Mar 09 2015 09:35:21
%S A032759 2,3,5,7,1,11,31,71,92,32,93,13,74,14,34,75,35,96,16,77,17,37,98,38,
%T A032759 99,71,11,31,71,91,131,271,311,371,391,491,511,571,631,671,731,791,
%U A032759 811,911,931,971,992,112,232,272,292,332,392,412,512,572,632,692,712,772,812,832
%N A032759 Take list of primes, move left digit of each term to end of previous term.
%H A032759 Reinhard Zumkeller, <a href="/A032759/b032759.txt">Table of n, a(n) for n = 1..10000</a>
%e A032759 Primes 89,97,101,103,107 become _8,99,71,011,031 or ...,38,99,71,11,31,...
%o A032759 (Haskell)
%o A032759 a032759 n = a032759_list !! (n-1)
%o A032759 a032759_list = 2 : map read (zipWith (++) vs (tail us)) :: [Integer]
%o A032759    where (us,vs) = unzip $ map ((splitAt 1) . show) a000040_list
%o A032759 -- _Reinhard Zumkeller_, Oct 10 2013
%Y A032759 Cf. A032760-A032764.
%Y A032759 Cf. A000040.
%K A032759 nonn,base,easy,nice
%O A032759 1,1
%A A032759 _Patrick De Geest_, May 15 1998
%E A032759 Offset changed by _Reinhard Zumkeller_, Oct 10 2013