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!)
A343021 Positions of records in A343016. 0
1, 2, 6, 90, 15120, 983010 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers k such that A343016(k) > A343016(j) for all j < k.
a(n) is divisible by 6 for n >= 3, by 30 for n >= 4, by 210 for n >= 5.
a(7) > 10^9 if it exists.
LINKS
EXAMPLE
A343016(1) = 0.
A343016(2) = 1 is the first value > 0 in A343016.
A343016(6) = 5 is the first value > 1.
A343016(90) = 6 is the first value > 5.
A343016(15120) = 7 is the first value > 6.
A343016(983010) = 8 is the first value > 7.
MAPLE
R:= 1, 2:
vmax:= 2:
f:= proc(n) local s, t, k;
s:= add(t[1]*t[2], t = ifactors(n)[2]);
for k from 0 do if not isprime(k*n+s) then return k fi od;
end proc:
for n from 6 by 6 to 10^6 do
v:= f(n);
if v > vmax then
vmax:= v;
R:= R, n;
fi
od:
R;
MATHEMATICA
With[{s = Array[Block[{m = 0, k = Plus @@ Times @@@ FactorInteger[#]}, While[PrimeQ[# m + k], m++]; m] &, 10^6]}, Map[FirstPosition[s, #][[1]] &, Union@ FoldList[Max, s]]] (* Michael De Vlieger, Apr 13 2021 *)
CROSSREFS
Cf. A343016.
Sequence in context: A087277 A177861 A218151 * A007188 A206156 A229052
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Apr 02 2021
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 April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)