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!)
A329657 Positions of records in A329656. 0
1, 2, 6, 10, 14, 51, 87, 159, 177, 332, 517, 1757, 2867, 3959, 10919, 24463, 34423, 49582, 83099, 609023, 833039, 1429559, 2162159, 7792823, 13597139, 20252299, 20563194, 21146159 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers n such that A329656(n) > A329656(k) for all k < n.
LINKS
EXAMPLE
a(3) = 6 is a member because A329656(6)=2 and A329656(k)<2 for k<6.
MAPLE
f:= proc(n) local s, t;
s:= convert(map(convert, ifactors(n)[2], `*`), `+`);
for t from 1 do
s:= n mod s;
if s = 0 then return t fi
od
end proc:
Res:= 1: count:= 1: vmax:= 0:
for n from 2 while count < 23 do
v:= f(n);
if v > vmax then
vmax:= v;
Res:= Res, n;
count:= count+1;
fi
od:
Res;
CROSSREFS
Cf. A329656.
Sequence in context: A362230 A082816 A074105 * A179777 A285959 A288631
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Nov 18 2019
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 March 29 08:08 EDT 2024. Contains 371265 sequences. (Running on oeis4.)