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!)
A368977 The number of bi-unitary divisors of n that are exponentially odd numbers (A268335). 3
1, 2, 2, 1, 2, 4, 2, 3, 1, 4, 2, 2, 2, 4, 4, 3, 2, 2, 2, 2, 4, 4, 2, 6, 1, 4, 3, 2, 2, 8, 2, 4, 4, 4, 4, 1, 2, 4, 4, 6, 2, 8, 2, 2, 2, 4, 2, 6, 1, 2, 4, 2, 2, 6, 4, 6, 4, 4, 2, 4, 2, 4, 2, 3, 4, 8, 2, 2, 4, 8, 2, 3, 2, 4, 2, 2, 4, 8, 2, 6, 3, 4, 2, 4, 4, 4, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Multiplicative with a(p^e) = (e+3)/2 if e is odd, and 2*floor(e/4)+1 if e is even.
a(n) >= 1, with equality if and only if n is in A062503.
a(n) <= A000005(n), with equality if and only if n is squarefree (A005117).
From Vaclav Kotesovec, Jan 11 2024: (Start)
Dirichlet g.f.: zeta(s)^2 * Product_{p prime} (1 - (1 - p^s + 2*p^(2*s)) / (p^s*(1 + p^s)*(1 + p^(2*s)))).
Let f(s) = Product_{p prime} (1 - (1 - p^s + 2*p^(2*s)) / (p^s*(1 + p^s)*(1 + p^(2*s)))).
Sum_{k=1..n} a(k) ~ f(1) * n * (log(n) + 2*gamma - 1 + f'(1)/f(1)), where
f(1) = Product_{p prime} (1 - (1 - p + 2*p^2) / (p*(1 + p)*(1 + p^2))) = 0.5715031234451924252215041182933420817059774181158824297150124265420835...,
f'(1) = f(1) * Sum_{p prime} (4*p^5 - p^4 + 2*p^3 + 2*p + 1) * log(p) / (p^7 + 2*p^6 + p^5 + 3*p^4 + p^3 + p - 1) = f(1) * 1.1422556395248477875508983912036578244050011522937179465478688905880430...
and gamma is the Euler-Mascheroni constant A001620. (End)
MATHEMATICA
f[p_, e_] := If[OddQ[e], (e+3)/2, 2*Floor[e/4]+1]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = vecprod(apply(x -> if(x%2, (x+3)/2, 2*(x\4)+1), factor(n)[, 2]));
(PARI) for(n=1, 100, print1(direuler(p=2, n, (1 + X - X^2 + 2*X^3 - X^4)/(1 - X - X^4 + X^5))[n], ", ")) \\ Vaclav Kotesovec, Jan 11 2024
CROSSREFS
Similar sequences: A055076, A322483, A363825, A368979.
Sequence in context: A363825 A368470 A295878 * A294931 A365402 A336856
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Jan 11 2024
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 12 12:33 EDT 2024. Contains 372480 sequences. (Running on oeis4.)