A348548 Positive integers that are the product of two integers ending with 8.
64, 144, 224, 304, 324, 384, 464, 504, 544, 624, 684, 704, 784, 864, 944, 1024, 1044, 1064, 1104, 1184, 1224, 1264, 1344, 1404, 1424, 1444, 1504, 1584, 1624, 1664, 1744, 1764, 1824, 1904, 1944, 1984, 2064, 2124, 2144, 2184, 2204, 2224, 2304, 2384, 2464, 2484, 2544
Offset: 1
Examples
64 = 8*8, 144 = 8*18, 224 = 8*28, 304 = 8*38, 324 = 18*18, 384 = 8*48, ...
Crossrefs
Programs
-
Mathematica
a={}; For[n=0, n<=260, n++, For[k=0, k<=n, k++, If[Mod[10*n+4, 10*k+8]==0 && Mod[(10*n+4)/(10*k+8), 10]==8 && 10*n+4>Max[a], AppendTo[a, 10*n+4]]]]; a
-
Python
def aupto(lim): return sorted(set(a*b for a in range(8, lim//8+1, 10) for b in range(a, lim//a+1, 10))) print(aupto(2550)) # Michael S. Branicky, Oct 22 2021
Formula
Lim_{n->infinity} a(n)/a(n-1) = 1.