OFFSET
1,3
FORMULA
EXAMPLE
a(2) = 1 since the 1 X 1 and 2 X 2 multiplication tables are
---
1
---
1 2
2 4
---
and the composite number 4 has appeared.
---
a(8)=5:
.1..2..3..4..5..6..7....8
....4..6..8.10.12.14...16
.......9.12.15.18.21...24
.........16.20.24.28...32 *
............25.30.35...40 *
...............36.42...48 *
..................49...56 *
.......................64 *
PROG
(Python)
from itertools import takewhile
from sympy import divisors, isprime
def A333995(n): return sum(1 for i in range(1, n+1) if all(d<=i for d in takewhile(lambda d:d<n, divisors(n*i))))-int(isprime(n)) if n>1 else 0 # Chai Wah Wu, Oct 14 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Charles Kusniec, Sep 05 2020
STATUS
approved