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!)
A336507 Lambda-practical numbers (A336506) that are not phi-practical (A260653). 2
45, 135, 225, 405, 675, 765, 855, 1035, 1125, 1215, 1275, 1305, 1395, 1665, 1845, 1935, 2025, 2115, 2295, 2565, 3105, 3375, 3645, 3825, 3915, 4185, 4275, 4995, 5175, 5535, 5625, 5805, 6075, 6345, 6375, 6525, 6885, 6975, 7155, 7695, 7965, 8235, 8325, 9045, 9225 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Thompson (2012) proved that all phi-practical numbers are lambda-practical, that all the terms of this sequence are not squarefree numbers, and that this sequence is infinite: for example, 45 * Product_{i=10..k} prime(i) is a term for all k >= 10.
LINKS
Lola Thompson, Products of distinct cyclotomic polynomials, Ph.D. thesis, Dartmouth College, 2012.
Lola Thompson, Variations on a question concerning the degrees of divisors of x^n - 1, Journal de Théorie des Nombres de Bordeaux, Vol. 26, No. 1 (2014), pp. 253-267.
MATHEMATICA
phiPracticalQ[n_] := If[n<1, False, If[n==1, True, (lst = Sort @ EulerPhi @ Divisors[n]; ok=True; Do[If[lst[[m]]>Sum[lst[[l]], {l, 1, m-1}]+1, (ok=False; Break[])], {m, 1, Length[lst]}]; ok)]]; rep[v_, c_] := Flatten @ Table[ConstantArray[v[[i]], {c[[i]]}], {i, Length[c]}]; lambdaPracticalQ[n_] := Module[{d = Divisors[n], lam, ns, r, x}, lam = CarmichaelLambda[d]; ns = EulerPhi[d]/lam; r = rep[lam, ns]; Min @ Rest @ CoefficientList[Series[Product[1 + x^r[[i]], {i, Length[r]}], {x, 0, n}], x] > 0]; Select[Range[1000], !phiPracticalQ[#] && lambdaPracticalQ[#] &] (* after Frank M Jackson at A260653 *)
CROSSREFS
Subsequence of A013929.
Complement of A260653 with respect to A336506.
Sequence in context: A098924 A195318 A131011 * A156370 A044377 A044758
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jul 23 2020
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 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)