login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A265111 A rearrangement of the terms of A027746 (seen as flat list) such that adjacent terms are distinct. 3

%I #5 Dec 02 2015 16:23:55

%S 1,2,3,2,5,2,3,2,7,2,3,2,5,3,2,11,2,3,2,13,2,7,2,5,3,2,17,2,3,2,19,3,

%T 2,5,2,7,3,2,11,2,23,2,3,2,5,2,13,5,2,3,2,7,3,2,29,3,2,5,3,2,31,2,11,

%U 3,2,17,2,7,5,2,3,2,37,3,2,19,2,13,3,2,5,2

%N A rearrangement of the terms of A027746 (seen as flat list) such that adjacent terms are distinct.

%H Reinhard Zumkeller, <a href="/A265111/b265111.txt">Table of n, a(n) for n = 1..10000</a>

%e . k | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

%e . | 1 2 3 2*2 5 2*3 7 2*2*2 3*3 2*5 11 2*2*3 13 2*7 3*5 2*2*2*2 17

%e . ----+-------------------------------------------------------------------

%e . a(n)| 1 2 3 2 5 2 3 2 7 2 3 2 5 3 2 11 2 3 2 13 2 7 2 5 3 2 17 2 3 2 ..

%o (Haskell)

%o a265111 n = a265111_list !! (n-1)

%o a265111_list = 1 : f 1 [] 0 1 where

%o f u [] w x = f 1 (reverse $ a027746_row' (u * x)) w (x + 1)

%o f u (v:vs) w x | v == w = f (u * v) vs w x

%o | otherwise = v : f u vs v x

%Y Cf. A027746, A265125 (partial products).

%K nonn

%O 1,2

%A _Reinhard Zumkeller_, Dec 01 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)