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!)
A220891 Where record values occur in A187824. 4
2, 3, 4, 5, 29, 41, 55, 71, 791, 1079, 30239, 246960, 636481, 1360800, 2162161, 39412801, 107881201, 3625549201, 170918748000, 2355997644001, 237662810985599, 4614209634434399, 7522575180120001, 362645725505263201, 10684484093105222399, 442709913651892286399, 5205240636387758366399 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Since A187824 is unbounded, this sequence is infinite.
LINKS
MAPLE
N:= 20: # number of record values wanted
R[1]:= 2: R[2]:= 3: r:= 3: count:= 2:
S[3]:= {$0..5}: M[3]:= 6:
# M[m] is the lcm of 1..m
# S[m] is the set of residues mod M[m] for numbers n with A187824(n)>=m
# R[i] is the i'th record value
for m from 4 while count < N do
M[m]:= ilcm(M[m-1], m); p:= M[m]/M[m-1];
if p = 1 then T:= S[m-1]
else T:= {seq(seq(a+b*M[m-1], a=S[m-1]), b=0..p-1)}
end if;
S[m]:= select(t -> member(mods(t, m), {1, 0, -1}), T);
r:= min(S[m] minus {0, 1});
if r > R[count] then
count:= count+1; R[count]:= r
end if;
end do:
[seq(R[j], j=1..count)];
# Robert Israel, Dec 31 2012
PROG
(PARI) {m=0; for(n=1, 9e9, m<A187824(n) || next; print1(n", "); m=A187824(n))} \\ For illustrative purpose (values < 10^8) only. - M. F. Hasler, Dec 31 2012
CROSSREFS
Sequence in context: A265098 A076209 A037399 * A220890 A250260 A345306
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 30 2012
STATUS
approved

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 July 22 07:42 EDT 2024. Contains 374481 sequences. (Running on oeis4.)