A347253 Positive integers that are the product of two integers ending with 4.
16, 56, 96, 136, 176, 196, 216, 256, 296, 336, 376, 416, 456, 476, 496, 536, 576, 616, 656, 696, 736, 756, 776, 816, 856, 896, 936, 976, 1016, 1036, 1056, 1096, 1136, 1156, 1176, 1216, 1256, 1296, 1316, 1336, 1376, 1416, 1456, 1496, 1536, 1576, 1596, 1616, 1656
Offset: 1
Examples
16 = 4*4, 56 = 4*14, 96 = 4*24, 136 = 4*34, 176 = 4*44, 196 = 14*14, 216 = 4*54, ...
Crossrefs
Programs
-
Mathematica
a={}; For[n=0, n<=200, n++, For[k=0, k<=n, k++, If[Mod[10*n+6, 10*k+4]==0 && Mod[(10*n+6)/(10*k+4), 10]==4 && 10*n+6>Max[a], AppendTo[a, 10*n+6]]]]; a
-
Python
def aupto(lim): return sorted(set(a*b for a in range(4, lim//4+1, 10) for b in range(a, lim//a+1, 10))) print(aupto(1660)) # Michael S. Branicky, Aug 24 2021
Formula
Lim_{n->infinity} a(n)/a(n-1) = 1.