login
Stone skipping numbers.
12

%I #20 Feb 25 2019 14:43:10

%S 1,3,4,5,9,13,18,19,31,32,33,38,39,55,56,57,58,59,94,95,96,97,103,104,

%T 156,157,239,244,245,249,253,254,255,256,257,258,275,276,277,419,420,

%U 609,610,787,788,789,790,791,792,1069,1070,1664,1665,1666,1667,1668,1669,1670

%N Stone skipping numbers.

%C The sequence is generated by a sieving method with iterated selection of intervals of the natural numbers as if they were forming a chain of contact points on which a stone could re-bounce once launched at some specific position at the small numbers.

%C Image a stone with an initial kinetic energy t, which is diminished/dissipated by 1 unit each time it rebounds from the "water surface" of the residual sequence; it rebounds t times and sinks once it has slowed down to t=1. The numbers underneath the arcs of this flight, but not the contact points, are eliminated. We look at the limit of repeatedly skipping stones each time starting at new launching points with larger initial t. In detail:

%C Start with the set of natural numbers. Let a(0)= t define t. Jump t positions to the right, erase t positions; from the last erased position jump t-1 positions to the right, erase t-1 positions; ...; jump 1 position to the right, erase 1 position. Go to the smallest i>t. Set t=i. Repeat.

%C Stone skipping sequences are a generalized case of scarce sequences; see A137292.

%H L. Bocquet, <a href="http://dx.doi.org/10.1119/1.1519232">The physics of stone skipping</a>, Am. J. Phys 71 (2) (2003) 150-155.

%H D. X. Charles, <a href="http://pages.cs.wisc.edu/~cdx/Sieve.pdf">Sieve Methods</a>, July 2000, U. of Wisconsin.

%H RĂ©mi Eismann, <a href="https://arxiv.org/abs/0711.0865">Decomposition into weight * level + jump and application to a new classification of primes</a>, arXiv:0711.0865 [math.NT], 2007-2010.

%H M. C. Wunderlich, <a href="http://matwbn.icm.edu.pl/ksiazki/aa/aa16/aa1614.pdf">A general class of sieve generated sequences</a>, Acta Arithmetica XVI, 1969, pp.41-56.

%e Start with natural numbers

%e 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,...

%e a(0)=1 set t=1 (jump 1 position to the right, erase 1 position) gives

%e 1,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,...

%e i=3 set t=3 (jump 3 positions to the right, erase 3 positions; from the last erased position jump 2 positions to the right, erase 2 positions; from the last erased position jump 1 position to the right, erase 1 position) gives

%e 1,3,4,5,9,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,...

%e i=4 set t=4 (jump 4 positions to the right, erase 4 positions; from the last erased position jump 3 positions to the right, erase 3 positions; from the last erased position jump 2 positions to the right, erase 2 positions;from the last erased position jump 1 position to the right, erase 1 position ) gives

%e 1,3,4,5,9,13,18,19,23,27,28,...

%e i=5 set t=5, repeat procedure.

%p nmax := 3000: a136259 := [seq(i,i=1..nmax)] : s := 1: t := op(s,a136259) : p := 1:

%p while op(-1,a136259)>t do p := p+t ; outb := false; while t >= 1 do for eli from 1 to t do if p > nops(a136259) then outb := true; break; fi; a136259 := subsop(p=NULL,a136259) ; od: if outb then break; fi; t := t-1 ; p := p+t-1 ; od: print(a136259) ; s := s+1 ; p := s ; t := op(s,a136259) : od: # _R. J. Mathar_, Aug 17 2009

%Y Cf. A137292. Bisections are A238091, A238092.

%Y Cf. A270877.

%K easy,nonn

%O 1,2

%A _Ctibor O. Zizka_, Mar 18 2008

%E Edited and corrected by _R. J. Mathar_, Aug 17 2009