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!)
A364360 a(n) = dpf(n) ^ tpf(n), where dpf(n) is the number of distinct prime factors of n if n >= 2 and otherwise = 0; tpf(n) is the number of all prime factors of n if n >= 2 and otherwise = 0. 1
1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 4, 1, 8, 1, 4, 4, 1, 1, 8, 1, 8, 4, 4, 1, 16, 1, 4, 1, 8, 1, 27, 1, 1, 4, 4, 4, 16, 1, 4, 4, 16, 1, 27, 1, 8, 8, 4, 1, 32, 1, 8, 4, 8, 1, 16, 4, 16, 4, 4, 1, 81, 1, 4, 8, 1, 4, 27, 1, 8, 4, 27, 1, 32, 1, 4, 8, 8, 4, 27, 1, 32, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
For n >= 2:
a(n) = 1 => a(n) in A246655, prime powers.
a(n) > 1 => a(n) in A024619, complement of A246655.
MAPLE
with(numtheory):
dpf := n -> ifelse(n = 0, 0, nops(factorset(n))): # dpf = [0] U [A001221].
tpf := n -> ifelse(n = 0, 0, bigomega(n)): # tpf = [0] U [A001222].
A364360 := n -> dpf(n) ^ tpf(n):
seq(A364360(n), n = 0..81);
CROSSREFS
Sequence in context: A351942 A351230 A173675 * A085731 A131301 A350698
KEYWORD
nonn
AUTHOR
Peter Luschny, Jul 20 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 May 1 17:02 EDT 2024. Contains 372175 sequences. (Running on oeis4.)