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!)
A350576 a(n) = n/A055874(n) - A055874(n). 1
0, -1, 2, 0, 4, -1, 6, 2, 8, 3, 10, -1, 12, 5, 14, 6, 16, 3, 18, 8, 20, 9, 22, 2, 24, 11, 26, 12, 28, 7, 30, 14, 32, 15, 34, 5, 36, 17, 38, 18, 40, 11, 42, 20, 44, 21, 46, 8, 48, 23, 50, 24, 52, 15, 54, 26, 56, 27, 58, 4, 60, 29, 62, 30, 64, 19, 66, 32, 68, 33, 70, 14, 72, 35, 74 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A350509(n) - A055874(n).
a(n) = n-1 if n is odd.
MATHEMATICA
a[n_] := Module[{k = 1}, While[Divisible[n, k], k++]; k--; n/k - k]; Array[a, 100] (* Amiram Eldar, Jan 07 2022 *)
PROG
(PARI) a4(n) = my(m=1); while ((n % m) == 0, m++); m - 1; \\ A055874
a(n) = my(x=a4(n)); n/x - x;
(Python)
def a(n):
m = 2
while n%m == 0: m += 1
return n//(m-1) - (m-1)
print([a(n) for n in range(1, 76)]) # Michael S. Branicky, Jan 07 2022
CROSSREFS
Cf. A005408 (odd numbers), A056737 (another difference n/d-d).
Sequence in context: A338824 A056737 A289144 * A008797 A239004 A168036
KEYWORD
sign
AUTHOR
Michel Marcus, Jan 07 2022, after a suggestion from Charles Kusniec
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 19 05:56 EDT 2024. Contains 372666 sequences. (Running on oeis4.)