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!)
A366308 The number of infinitary divisors of n that are terms of A366242. 4
1, 2, 2, 1, 2, 4, 2, 2, 1, 4, 2, 2, 2, 4, 4, 2, 2, 2, 2, 2, 4, 4, 2, 4, 1, 4, 2, 2, 2, 8, 2, 4, 4, 4, 4, 1, 2, 4, 4, 4, 2, 8, 2, 2, 2, 4, 2, 4, 1, 2, 4, 2, 2, 4, 4, 4, 4, 4, 2, 4, 2, 4, 2, 2, 4, 8, 2, 2, 4, 8, 2, 2, 2, 4, 2, 2, 4, 8, 2, 4, 2, 4, 2, 4, 4, 4, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Multiplicative with a(p^e) = 2^A139351(e).
a(n) = 2^A366246(n).
a(n) = A037445(n)/A366309(n).
a(n) = A037445(A366244(n)).
a(n) >= 1, with equality if and only if n is in A366243.
a(n) <= A037445(n), with equality if and only if n is in A366242.
MATHEMATICA
s[0] = 0; s[n_] := s[n] = s[Floor[n/4]] + If[OddQ[Mod[n, 4]], 1, 0]; f[p_, e_] := 2^s[e]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) s(e) = if(e > 3, s(e\4)) + e%2 \\ after Charles R Greathouse IV at A139351
a(n) = vecprod(apply(x -> 2^s(x), factor(n)[, 2]));
CROSSREFS
Sequence in context: A055076 A069780 A369307 * A347089 A354825 A210531
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Oct 06 2023
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 August 21 21:14 EDT 2024. Contains 375353 sequences. (Running on oeis4.)