OFFSET
1,1
COMMENTS
As tau(m) = 2 * beta(m), the terms of this sequence are not squares.
The number of Brazilian representations of a non-oblong number m with repdigits of length = 2 is beta'(n) = tau(n)/2 - 1.
This sequence is the first subsequence of A326380: non-oblong composites which have only one Brazilian representation with three digits or more.
EXAMPLE
tau(m) = 4 and beta(m) = 2 for m = 15, 21, 26, 57, 62, 85, 86, ... with 15 = 1111_2 = 33_4.
tau(m) = 8 and beta(m) = 4 for m = 40 = 1111_3 = 55_7 = 44_9 = 22_19.
tau(m) = 10 and beta(m) = 5 for m = 80 = 2222_3 = 88_9 = 55_15 = 44_19 = 22_39.
PROG
(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); \\ Michel Marcus, Jul 15 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bernard Schott, Jul 14 2019
STATUS
approved