login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A038565 Number of times digits are repeated in A038564. 15
1, 1, 2, 1, 3, 3, 3, 3, 3, 5, 5, 3, 3, 4, 3, 3, 3, 5, 3, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Next term > 1 is a(221) = 7, corresponding to A038564(221) = 26300344.
LINKS
EXAMPLE
54023 [ 1(1),2(1),3(1),4(1),5(1),6(1),7(1),8(1),9(1) ],
54203 [ 1(1),2(1),3(1),4(1),5(1),6(1),7(1),8(1),9(1) ],
55868 [ 1(2),2(2),3(2),4(2),5(2),6(2),7(2),8(2),9(2) ],
500407 [ 1(1),2(1),3(1),4(1),5(1),6(1),7(1),8(1),9(1) ].
PROG
(Python)
from sympy import divisors
from collections import Counter
def okval(n):
c = Counter()
for d in divisors(n, generator=True): c.update(str(d))
return c["1"] if len(set([c[i] for i in "123456789"])) == 1 else False
print([okval(k) for k in range(1, 60000) if okval(k)]) # Michael S. Branicky, Nov 13 2022
CROSSREFS
Cf. A038564.
Sequence in context: A307558 A226273 A111353 * A344869 A248605 A239619
KEYWORD
nonn,base,easy
AUTHOR
EXTENSIONS
More terms from Sascha Kurz, Oct 18 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 2 16:57 EDT 2024. Contains 372198 sequences. (Running on oeis4.)