A326379 Numbers 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.
2, 3, 5, 8, 10, 11, 14, 17, 18, 19, 22, 23, 24, 27, 28, 29, 32, 33, 34, 35, 37, 38, 39, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 58, 59, 60, 61, 65, 66, 67, 68, 69, 70, 71, 74, 75, 76, 77, 78, 79, 82, 83, 84, 87, 88, 89, 92, 94, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 112, 113, 115, 116
Offset: 1
Examples
One example for each type: 10 = 22_4 and tau(10) = 4 with beta(10) = 1. 42 = 6 * 7 = 222_4 = 33_13 = 22_20 and tau(42) = 8 with beta(42) = 3. 17 is no Brazilian prime with tau(17) = 2 and beta(17) = 0.
Links
Crossrefs
Programs
-
PARI
beta(n) = sum(i=2, n-2, #vecsort(digits(n, i), , 8)==1); \\ A220136 isok(n) = beta(n) == numdiv(n)/2 - 1; \\ Michel Marcus, Jul 03 2019
Comments