login
A347253
Positive integers that are the product of two integers ending with 4.
8
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,1
FORMULA
Lim_{n->infinity} a(n)/a(n-1) = 1.
EXAMPLE
16 = 4*4, 56 = 4*14, 96 = 4*24, 136 = 4*34, 176 = 4*44, 196 = 14*14, 216 = 4*54, ...
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
PROG
(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
CROSSREFS
Cf. A017341 (supersequence), A053742 (ending with 5), A139245 (ending with 2), A324297 (ending with 6), A346950 (ending with 3), A347254, A347255.
Sequence in context: A220536 A291671 A029719 * A039451 A279063 A331766
KEYWORD
nonn,base
AUTHOR
Stefano Spezia, Aug 24 2021
STATUS
approved