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!)
A343440 a(n) = Sum_{d|n, gcd(d, n/d) = 1} (-1)^omega(n/d) * 2^(d-1). 0
1, 1, 3, 7, 15, 27, 63, 127, 255, 495, 1023, 2037, 4095, 8127, 16365, 32767, 65535, 130815, 262143, 524265, 1048509, 2096127, 4194303, 8388477, 16777215, 33550335, 67108863, 134217657, 268435455, 536854005, 1073741823, 2147483647, 4294966269, 8589869055, 17179869105 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = 2^(n-1) - Sum_{d|n, gcd(d, n/d) = 1, d < n} a(d).
MATHEMATICA
a[n_] := Sum[If[GCD[d, n/d] == 1, (-1)^PrimeNu[n/d] 2^(d - 1), 0], {d, Divisors[n]}]; Table[a[n], {n, 35}]
PROG
(PARI) a(n) = sumdiv(n, d, if (gcd(d, n/d)==1, (-1)^omega(n/d) * 2^(d-1))); \\ Michel Marcus, Apr 15 2021
CROSSREFS
Sequence in context: A139806 A143701 A147638 * A147394 A350370 A103021
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 15 2021
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 September 23 17:42 EDT 2023. Contains 365554 sequences. (Running on oeis4.)