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!)
A129138 a(n) = number of positive divisors of n that are <= phi(n), where phi(n) = A000010(n). 2

%I #16 Feb 01 2019 20:38:37

%S 1,1,1,2,1,2,1,3,2,2,1,4,1,2,3,4,1,4,1,4,3,2,1,6,2,2,3,4,1,5,1,5,3,2,

%T 3,7,1,2,3,6,1,5,1,4,5,2,1,8,2,4,3,4,1,6,3,6,3,2,1,9,1,2,5,6,3,5,1,4,

%U 3,6,1,10,1,2,5,4,3,5,1,8,4,2,1,9,3,2,3,6,1,9,3,4,3,2,3,10,1,4,5,7,1,5,1,6

%N a(n) = number of positive divisors of n that are <= phi(n), where phi(n) = A000010(n).

%H Charles R Greathouse IV, <a href="/A129138/b129138.txt">Table of n, a(n) for n = 1..10000</a>

%e phi(16) = 8. So a(16) is the number of divisors of 16 which are <= 8. There are 4 such divisors: 1, 2, 4, 8; so a(16) = 4.

%p with(numtheory): a:=proc(n) local div, ct, j: div:=divisors(n): ct:=0: for j from 1 to tau(n) do if div[j]<=phi(n) then ct:=ct+1 else ct:=ct: fi od: ct; end: seq(a(n),n=1..135); # _Emeric Deutsch_, Mar 31 2007

%t Table[Length[Select[Divisors[n], # <= EulerPhi[n] &]], {n, 104}] (* _Jayanta Basu_, May 23 2013 *)

%o (PARI) a(n)=my(p=eulerphi(n));#select(k->k<=p,divisors(n)) \\ _Charles R Greathouse IV_, Mar 05 2013

%Y Cf. A129139, A126131, A074919.

%K nonn

%O 1,4

%A _Leroy Quet_, Mar 30 2007

%E More terms from _Emeric Deutsch_, Mar 31 2007

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 April 19 08:20 EDT 2024. Contains 371782 sequences. (Running on oeis4.)