login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

The number of coreful divisors of n that are exponentially odd numbers (A268335).
12

%I #47 Feb 11 2024 02:41:29

%S 1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,2,1,1,1,1,3,1,1,

%T 1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,1,1,1,1,

%U 1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1

%N The number of coreful divisors of n that are exponentially odd numbers (A268335).

%C First differs from A050361 at n = 64.

%C From _Amiram Eldar_, Sep 08 2023: (Start)

%C The number of exponentially odd divisors of n is A322483(n), and their sum is A033634(n).

%C A coreful divisor d of a number n is a divisor with the same set of distinct prime factors as n. (End)

%C Also, the number of divisors of n that are cubefull exponentially odd numbers (A335988). - _Amiram Eldar_, Feb 11 2024

%H Amiram Eldar, <a href="/A325837/b325837.txt">Table of n, a(n) for n = 1..10000</a>

%F Multiplicative with a(p^e) = floor((e+1)/2).

%F Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = Product_{p prime} (1 + 1/(p*(p^2-1))) = 1.231291... (A065487). - _Amiram Eldar_, Sep 10 2022

%F a(n) = A046951(A350390(n)) (the number of squares dividing the largest exponentially odd divisor of n). - _Amiram Eldar_, Sep 01 2023

%F From _Amiram Eldar_, Sep 08 2023: (Start)

%F a(n) = A046951(A003557(n)).

%F Dirichlet g.f.: zeta(s) * zeta(2*s) * Product_{p prime} (1 - 1/p^(2*s) + 1/p^(3*s)). (End)

%t fun[p_,e_] := Floor[(e+1)/2]; a[n_] := Times@@(fun@@@FactorInteger[n]); Array[a, 100]

%o (PARI) a(n) = vecprod(apply(x -> (x+1)\2, factor(n)[, 2])); \\ _Amiram Eldar_, Sep 01 2023

%Y Cf. A033634, A050361, A065487, A268335, A295316, A335988, A350390.

%Y Cf. A003557, A005361 (number of coreful divisors), A046951, A268335.

%K nonn,easy,mult

%O 1,8

%A _Amiram Eldar_, Sep 07 2019

%E Name corrected by _Amiram Eldar_, Sep 08 2023