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!)
A305656 Integers m that satisfy tau(m) + omega(m) = #({phi(x) = m}). 2
2, 4, 8, 16, 24, 32, 64, 128, 256, 320, 512, 1024, 2048, 3712, 4096, 7168, 8192, 10512, 16192, 16384, 32768, 33024, 37888, 41728, 49280, 51552, 54528, 57280, 62592, 65536, 66432, 67968, 68832, 69792, 81600, 84352, 87696, 91968, 92016, 93888, 94720, 124128, 129888, 131072 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All even terms of A000079 are contained in this sequence.
a(5) = 24 is the first term not a term of A000079, a(10) = 320 is the second.
LINKS
Max Alekseyev, PARI scripts for various problems (see invphi.gp there).
FORMULA
tau(m) + omega(m) = #({phi(x) = m}).
Integers m such that A163523(m) = A014197(m).
EXAMPLE
2 is a term because tau(2) = 2, omega(2) = 1, and #({phi(x) = 2}) = 3.
24 is a term because tau(24) = 8, omega(24) = 2, and #({phi(x) = 24}) = 10.
MAPLE
filter:= proc(n) uses numtheory; tau(n)+nops(factorset(n)) = nops(invphi(n)) end proc:
select(filter, [seq(i, i=2..10^5, 2)]); # Robert Israel, Oct 28 2021
MATHEMATICA
Block[{nn = 10^5, s}, s = Function[s, Function[t, Take[#, nn] &@ ReplacePart[t, Map[# -> Length@ Lookup[s, #] &, Keys@ s]]]@ ConstantArray[0, Max@ Keys@ s]]@ KeySort@ PositionIndex@ Array[EulerPhi, Floor[nn^(3/2)] + 10]; Select[Range@ nn, DivisorSigma[0, #] + PrimeNu[#] == s[[#]] &] ] (* Michael De Vlieger, Jul 21 2018 *)
PROG
(PARI) isok(m) = numdiv(m) + omega(m) == #invphi(m); \\ Michel Marcus, Jun 08 2018
CROSSREFS
Cf. A000079.
Sequence in context: A010072 A318654 A333994 * A005943 A330131 A008233
KEYWORD
nonn
AUTHOR
Torlach Rush, Jun 07 2018
EXTENSIONS
More terms from Michel Marcus, Jun 08 2018
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 19 11:04 EDT 2024. Contains 375284 sequences. (Running on oeis4.)