OFFSET
1,1
PROG
(Python)
def a(n): q, r = divmod((10*n + 11)**3, 1000); return q + int(r != 0)
print([a(n) for n in range(1, 43)]) # Michael S. Branicky, Oct 30 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Sep 15 1998
STATUS
approved