The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A365474 a(n) = A365339(10^n). 10
1, 7, 34, 193, 1276, 9656, 78562, 664643, 5761519, 50847598 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The Pollack et al. reference lists a(4)-a(7) and conjectures that A365339(n) = A000720(n)+64 for n >= 31957 which in turns implies the conjecture that a(n) = A006880(n)+64 for n >= 5.
LINKS
Paul Pollack, Carl Pomerance, and Enrique Treviño, Sets of monotonicity for Euler's totient function, preprint. See M(n).
Paul Pollack, Carl Pomerance, and Enrique Treviño, Sets of monotonicity for Euler's totient function, Ramanujan J. 30 (2013), no. 3, pp. 379-398.
Terence Tao, Monotone non-decreasing sequences of the Euler totient function, arXiv:2309.02325 [math.NT], 2023.
FORMULA
a(n) = A006880(n)+64 for n >= 5 (conjectured).
PROG
(Python)
from bisect import bisect
from sympy import totient
def A365474(n):
m = 10**n
plist, qlist, c = tuple(totient(i) for i in range(1, m+1)), [0]*(m+1), 0
for i in range(m):
qlist[a:=bisect(qlist, plist[i], lo=1, hi=c+1, key=lambda x:plist[x])]=i
c = max(c, a)
return c
CROSSREFS
Sequence in context: A027233 A117650 A370618 * A273221 A144038 A027842
KEYWORD
nonn,hard,more
AUTHOR
Chai Wah Wu, Sep 04 2023
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 May 16 05:56 EDT 2024. Contains 372549 sequences. (Running on oeis4.)