OFFSET
1,1
COMMENTS
As tau(m) = 2 * (1 + 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 A326379: non-oblong composites which have no Brazilian representation with three digits or more.
LINKS
EXAMPLE
tau(m) = 4 and beta(m)=1 for m = 8, 10, 14, 22, 27, 33, 34, 35, 38, ... 8 = 22_3,
tau(m) = 6 and beta(m)=2 for m = 18, 28, 32, 44, 45, 50, ... 18 = 33_5 = 22_8,
tau(m) = 8 and beta(m)=3 for m = 24, 54, 66, 70, ... 24 = 44_5 = 33_7 = 22_11,
tau(m) = 10 and beta(m) = 4: 48, 112, ... 48 = 66_7 = 44_11 = 33_15 = 22_23.
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 - 1); \\ Michel Marcus, Jul 15 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bernard Schott, Jul 12 2019
STATUS
approved