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!)
A125131 Product 1-p, where p ranges over the prime factors of n with multiplicity. 4
1, -1, -2, 1, -4, 2, -6, -1, 4, 4, -10, -2, -12, 6, 8, 1, -16, -4, -18, -4, 12, 10, -22, 2, 16, 12, -8, -6, -28, -8, -30, -1, 20, 16, 24, 4, -36, 18, 24, 4, -40, -12, -42, -10, -16, 22, -46, -2, 36, -16, 32, -12, -52, 8, 40, 6, 36, 28, -58, 8, -60, 30, -24, 1, 48, -20, -66, -16, 44, -24, -70, -4, -72, 36, -32 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = f(1) where f is the monic polynomial whose zeros are the prime factors of n with multiplicity.
a(p) = 1-p for any prime number p.
Completely multiplicative with a(p) = 1-p. - Franklin T. Adams-Watters, Jan 17 2007
a(n) = f(1), where f(x)=(x-p_1)(x-p_2)...(x-p_m), where { p_1,p_2,...p_m } are the prime factors of n with multiplicity.
a(n) = A003958(n) * A008836(n).
Dirichlet g.f.: Product_{primes p} 1/(1 + p^(1-s) - p^(-s)). - Vaclav Kotesovec, Jun 14 2020
EXAMPLE
a(120) = -8 because the prime factorization of 120 is 2*2*2*3*5, so f(x)=(x-2)(x-2)(x-2)(x-3)(x-5) and f(1)=(-1)*(-1)*(-1)*(-2)*(-4)= -8.
MAPLE
a:= n-> mul((1-i[1])^i[2], i=ifactors(n)[2]):
seq(a(n), n=1..80); # Alois P. Heinz, Jun 28 2015
MATHEMATICA
a[n_] := Times @@ (-Flatten[Table[ #1, {#2}] & @@@ FactorInteger@n] + 1);
Array[a, 80] (* Robert G. Wilson v, Jan 10 2007; corrected by Michael Shamos, Aug 12 2023 *)
PROG
(R) f=polyroot(factor(x)); f(1)
(PARI) a(n)=my(f=factor(n)); prod(i=1, #f~, (1-f[i, 1])^f[i, 2]) \\ Charles R Greathouse IV, Jun 28 2015
(PARI) for(n=1, 100, print1(direuler(p=2, n, 1/(1 + p*X - X))[n], ", ")) \\ Vaclav Kotesovec, Jun 14 2020
CROSSREFS
Sequence in context: A187203 A187202 A345046 * A003958 A326140 A082729
KEYWORD
easy,sign,mult
AUTHOR
Mitch Cervinka (puritan(AT)toast.net), Jan 10 2007
EXTENSIONS
Edited by Franklin T. Adams-Watters, Jan 17 2007
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 March 29 06:15 EDT 2024. Contains 371265 sequences. (Running on oeis4.)