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!)
A277366 Composite numbers k such that phi(k)*lambda(k) divides (k-1)^2, where phi(k) = A000010(k) and lambda(k) = A002322(k). 1
1729, 670033, 6840001, 83099521, 193708801, 321197185, 367804801, 484662529, 1752710401, 2320690177, 5064928705, 12820178449, 32220147601, 257124585601, 270177600001, 301036080385, 7043394657601, 13237329899521, 14276860416001, 85661522006401, 119377939968001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Are there infinitely many such numbers?
Such k must be a Carmichael number since phi(k)*lambda(k) = m*lambda(k)^2 for some integer m. - Nathan McNew, Oct 11 2016
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..115 (terms below 10^22, calculated using data from Claude Goutier)
MATHEMATICA
Select[Range[10^8], CompositeQ[#] && Divisible[(# - 1)^2, EulerPhi[#] * CarmichaelLambda[#]] &] (* Amiram Eldar, Feb 02 2019 *)
PROG
(PARI) lista(nn) = forcomposite(n=4, nn, if (((n-1)^2 % (eulerphi(n)*lcm(znstar(n)[2]))) == 0, print1(n, ", ")); ); \\ Michel Marcus, Oct 11 2016
(PARI) is(n, f=factor(n))=(n-1)^2%(eulerphi(f)*lcm(znstar(f)[2])) == 0 && !isprime(n) && n>1 \\ Charles R Greathouse IV, Oct 11 2016
CROSSREFS
Subsequence of A002997 and of A173703.
Sequence in context: A327787 A352970 A033502 * A050794 A138130 A306657
KEYWORD
nonn
AUTHOR
Thomas Ordowski, Oct 11 2016
EXTENSIONS
a(2)-a(3) from Michel Marcus, Oct 11 2016
a(4)-a(8) from Charles R Greathouse IV, Oct 11 2016
a(9)-a(13) from David A. Corneth, Oct 11 2016
More terms from Amiram Eldar, Feb 02 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 June 30 08:10 EDT 2024. Contains 373861 sequences. (Running on oeis4.)