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!)
A306414 a(n) = psi(A002997(n)), psi = A002322. 4
80, 48, 36, 112, 60, 1320, 198, 504, 360, 180, 120, 288, 1224, 2024, 36, 240, 300, 720, 72, 2320, 60, 108, 600, 112, 216, 1980, 8568, 528, 420, 6120, 2268, 360, 540, 3360, 240, 4900, 2160, 396, 432, 144, 300, 120, 576, 2970, 612, 396, 648, 630, 1260, 1080, 1008 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
By definition, A002997 lists the composite numbers k such that psi(k) divides k - 1. This sequence lists the values for psi(k) when k runs through A002997.
LINKS
FORMULA
a(n) = A002322(A002997(n)).
a(n) = (A002997(n) - 1) / A174590(n). - Jianing Song, Dec 12 2021
EXAMPLE
A002997(1) = 561, psi(561) = 80, 561 = 7*80 + 1.
A002997(2) = 1105, psi(1105) = 48, 1105 = 23*48 + 1.
A002997(3) = 1729, psi(1729) = 36, 1729 = 48*36 + 1.
A002997(4) = 2465, psi(2465) = 112, 2465 = 22*112 + 1.
MATHEMATICA
seq[kmax_] := Module[{s = {}, lam}, Do[If[CompositeQ[k], lam = CarmichaelLambda[k]; If[Mod[k, lam] == 1, AppendTo[s, lam]]], {k, 9, kmax, 2}]; s]; seq[10^6] (* Amiram Eldar, Nov 14 2023 *)
PROG
(PARI) forstep(n=3, 1e6, 2, my(m=lcm(znstar(n)[2])); if((n-1)%m==0 && !isprime(n), print1(m, ", ")))
CROSSREFS
Sequence in context: A107930 A239131 A033400 * A207144 A200720 A220088
KEYWORD
nonn
AUTHOR
Jianing Song, Feb 13 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 April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)