A282391 Numbers j such that d(j) = d(j + 3*d(j)), where d(j) is the number of divisors of j.
5, 7, 10, 11, 13, 14, 15, 17, 21, 22, 23, 26, 27, 30, 31, 32, 34, 37, 39, 41, 42, 45, 46, 47, 50, 53, 54, 57, 60, 61, 62, 65, 67, 72, 73, 74, 78, 82, 83, 90, 94, 96, 97, 98, 99, 101, 103, 104, 106, 107, 111, 114, 120, 122, 128, 129, 130, 131, 133, 134, 143
Offset: 1
Keywords
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
PARI
isok(n) = numdiv(n) == numdiv(n+3*numdiv(n)); \\ Michel Marcus, Feb 14 2017
-
PARI
is(n)=my(d=numdiv(n)); d==numdiv(n+3*d) \\ Charles R Greathouse IV, Feb 14 2017
Extensions
More terms from Peter J. C. Moses, Feb 14 2017
Comments