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!)
A056875 Generated by sieving the natural numbers: keep the smallest remaining number k and take out its k-th successor l as well as the l-th successor m of l, the m-th successor of m and so on. Then start again from the next remaining number. 3

%I #14 Dec 11 2019 09:50:56

%S 1,3,5,6,9,10,11,13,14,18,19,20,21,23,24,27,28,30,33,34,36,38,40,41,

%T 42,43,44,46,47,50,51,53,55,58,59,60,62,65,68,69,70,71,73,74,76,79,80,

%U 82,83,84,85,88,89,91,92,93,95,96,97,101,102,103,105,106,109,111,113,114

%N Generated by sieving the natural numbers: keep the smallest remaining number k and take out its k-th successor l as well as the l-th successor m of l, the m-th successor of m and so on. Then start again from the next remaining number.

%C These numbers are homogeneously distributed with a density of approximately 0.59060.

%H Reinhard Zumkeller, <a href="/A056875/b056875.txt">Table of n, a(n) for n = 0..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Sieve.html">Sieve</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Sieve_theory">Sieve theory</a>

%H <a href="/index/Si#sieve">Index entries for sequences generated by sieves</a>

%e In the first round one starts with 1 and the numbers 2,4,8,16,... are removed leaving 1,3,5,6,7,9,10,11,12,13,14,15,17,18,19,20,... The third successor of 3 is now 7 and the 7th of 7 is 15 leaving 1,3,5,6,8,9,10,11,12,13,14,16,...

%t S = Range[200]; S0 = {}; i = 1;

%t While[S != S0, ii = NestWhileList[#+S[[#]] &, i+S[[i]], # <= Length[S]&]; S0 = S; S = Delete[S, List /@ Select[ii, # <= Length[S]&]]; i++];

%t S (* _Jean-François Alcover_, Dec 11 2019 *)

%o (Haskell)

%o a056875 n = a056875_list !! (n-1)

%o a056875_list = f [1..] where

%o f zs = head zs : f (g zs) where

%o g (x:xs) = us ++ g vs where (us, vs) = splitAt (x - 1) xs

%o -- _Reinhard Zumkeller_, Sep 11 2013

%Y Cf. A066680, A232054 (complement).

%K nonn,easy,nice

%O 0,2

%A Thomas Schulze (jazariel(AT)tiscalenet.it), Sep 02 2000

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 23 11:27 EDT 2024. Contains 371913 sequences. (Running on oeis4.)