A153816 a(n) = Sum_{i=1..(10^n-1)/9} floor(((10^n-1)/9)/i).
1, 29, 542, 7967, 105225, 1308095, 15639310, 181976675, 2075608136, 23314508721, 258729364359, 2843136431305, 30989792180446, 335482200606705, 3610664794156597, 38665075822637767, 412235037037411453, 4378193158484415385, 46340359465948601163
Offset: 1
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..26
Programs
-
Mathematica
A153816[n_] := Sum[Floor[((10^n - 1)/9)/i], {i, (10^n - 1)/9}]; Array[A153816, 7] (* JungHwan Min, Feb 05 2017 *)
-
PARI
a(n) = sum(i=1, (10^n-1)/9, ((10^n-1)/9)\i); \\ Michel Marcus, Jun 08 2018
-
Python
def a(n): t = (10**n-1)//9; return sum(t//i for i in range(1, t+1)) print([a(n) for n in range(1, 10)]) # Michael S. Branicky, Jan 29 2021
-
Python
from math import isqrt def A153816(n): return -(s:=isqrt(m:=(10**n-1)//9))**2+(sum(m//k for k in range(1,s+1))<<1) # Chai Wah Wu, Oct 23 2023
Extensions
Formula corrected by Giovanni Resta, Feb 05 2009
a(9)-a(17) from Donovan Johnson, Sep 06 2010
a(18)-a(19) from Hiroaki Yamanouchi, Jul 06 2014
Comments