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!)
A324787 Index of n-th low point in A022837. 5

%I #10 Oct 18 2020 02:49:59

%S 2,5,12,29,78,199,508,1355,3592,9589,25752,70579,194228,539961,

%T 1507602,4228745,11913940,33690443,95581182,272003821,776082524,

%U 2219823175,6363074656

%N Index of n-th low point in A022837.

%C A "low point" in a sequence is a term which is less than the previous term (this condition is skipped for the initial term) and which is followed by two or more increases.

%H Rémy Sigrist, <a href="/A324787/a324787.gp.txt">PARI program for A324787</a>

%p Riecaman := proc(a,s,M)

%p # Start with s, add or subtract a[n], get M terms. If a has w terms, can get M=w+1 terms.

%p local b,M2,n,t;

%p if whattype(a) <> list then ERROR("First argument should be a list"); fi;

%p if a[1]=0 then ERROR("a[1] should not be zero"); fi;

%p M2 := min(nops(a),M-1);

%p b:=[s]; t:=s;

%p for n from 1 to M2 do

%p if a[n]>t then t:=t+a[n] else t:=t-a[n]; fi; b:=[op(b),t]; od:

%p b; end;

%p blocks := proc(a,S) local b,c,d,M,L,n;

%p # Given a list a, whose leading term has index S, return [b,c,d], where b lists the indices of the low points in a, c lists the values of a at the low points, and d lists the length of runs between the low points.

%p b:=[]; c:=[]; d:=[]; L:=1;

%p # if a[1] a low point?

%p n:=1;

%p if( (a[n+1]>a[n]) and (a[n+2]>a[n+1]) ) then

%p b:=[op(b),n+S-1]; c:=[op(c),a[n]]; d:=[op(d), n-L]; L:=n; fi;

%p for n from 2 to nops(a)-2 do

%p # if a[n] a low point?

%p if( (a[n-1]>a[n]) and (a[n+1]>a[n]) and (a[n+2]>a[n+1]) ) then

%p b:=[op(b),n+S-1]; c:=[op(c),a[n]]; d:=[op(d), n-L]; L:=n; fi; od;

%p [b,c,d]; end;

%p p0:=[seq(ithprime(n),n=1..100001)]:

%p q1:=Riecaman(p0,1,100000):

%p blocks(q1,0); # produces [the present sequence, A324788, A324789]

%o (PARI) See Links section.

%Y Cf. A022837, A324788, A324789, A324790.

%Y If the basic sequence (A022837) began with 0 instead of 1 we would get A008348, A309226, A324782, A324783, A309225.

%K nonn,more

%O 0,1

%A _N. J. A. Sloane_, Sep 04 2019

%E Modified definition to make offset 0. - _N. J. A. Sloane_, Oct 02 2019

%E a(12)-a(22) from _Rémy Sigrist_, Oct 18 2020

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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)