cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A347253 Positive integers that are the product of two integers ending with 4.

Original entry on oeis.org

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

Views

Author

Stefano Spezia, Aug 24 2021

Keywords

Examples

			16 = 4*4, 56 = 4*14, 96 = 4*24, 136 = 4*34, 176 = 4*44, 196 = 14*14, 216 = 4*54, ...
		

Crossrefs

Cf. A017341 (supersequence), A053742 (ending with 5), A139245 (ending with 2), A324297 (ending with 6), A346950 (ending with 3), A347254, A347255.

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.