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!)
A305426 Number of proper divisors of n of the form 2^k - 1 for k >= 1. 4
0, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 2, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 2, 1, 3, 1, 1, 2, 1, 2, 2, 1, 1, 2, 1, 1, 3, 1, 1, 3, 1, 1, 2, 2, 1, 2, 1, 1, 2, 1, 2, 2, 1, 1, 3, 1, 2, 3, 1, 1, 2, 1, 1, 2, 2, 1, 2, 1, 1, 3, 1, 2, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 3, 2, 1, 3, 1, 1, 2, 1, 2, 2, 1, 1, 2, 1, 1, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
a(n) is the number of terms of A000225 less than n that divide n.
LINKS
FORMULA
a(n) = Sum_{d|n, d<n} A036987(d).
a(n) = A154402(n) - A036987(n).
MATHEMATICA
Table[DivisorSum[n, 1 &, And[IntegerQ@ Log2[# + 1], # < n] &], {n, 105}] (* Michael De Vlieger, Jun 11 2018 *)
PROG
(PARI)
A209229(n) = (n && !bitand(n, n-1));
A036987(n) = A209229(1+n);
A305426(n) = sumdiv(n, d, (d<n)*A036987(d));
CROSSREFS
Cf. also A305435.
Sequence in context: A103957 A232550 A363851 * A322811 A091853 A193773
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 11 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 April 25 13:23 EDT 2024. Contains 371970 sequences. (Running on oeis4.)