A326388 Non-oblong composites m such that beta(m) = tau(m)/2 + 1 where beta(m) is the number of Brazilian representations of m and tau(m) is the number of divisors of m.
63, 255, 273, 364, 511, 546, 728, 777, 931, 1023, 1365, 1464, 2730, 3280, 3549, 3783, 4557, 6560, 7566, 7812, 9114, 9331, 9841, 10507, 11349, 11718, 13671, 14043, 14763, 15132, 15624, 16383, 18291, 18662, 18915, 19608, 19682, 21845, 22351, 22698
Offset: 1
Examples
tau(m) = 4 and beta(m) = 3 for m = 511 with 511 = 111111111_2 = 777_8 = 77_72, tau(m) = 6 and beta(m) = 4 for m = 63 with 63 = 111111_2 = 333_4 = 77_8 = 33_20, tau(m) = 8 and beta(m) = 5 for m = 255 with 255 = 11111111_2 = 3333_4 = (15,15)_16 = 55_50 = 33_84, tau(m) = 12 and beta(m) = 7 for m = 364 with 364 = 111111_3 = 4444_9 = (14,14)_25 = (13,13)_27 = 77_51 = 44_90 = 22_181.
Links
Crossrefs
Programs
-
PARI
isoblong(n) = my(m=sqrtint(n)); m*(m+1)==n; \\ A002378 beta(n) = sum(i=2, n-2, #vecsort(digits(n, i), , 8)==1); \\ A220136 isok(m) = !isprime(m) && !isoblong(m) && (beta(m) == numdiv(m)/2 + 1); \\ Michel Marcus, Jul 15 2019
Comments