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.

A348548 Positive integers that are the product of two integers ending with 8.

This page as a plain text file.
%I A348548 #12 Oct 23 2021 00:10:14
%S A348548 64,144,224,304,324,384,464,504,544,624,684,704,784,864,944,1024,1044,
%T A348548 1064,1104,1184,1224,1264,1344,1404,1424,1444,1504,1584,1624,1664,
%U A348548 1744,1764,1824,1904,1944,1984,2064,2124,2144,2184,2204,2224,2304,2384,2464,2484,2544
%N A348548 Positive integers that are the product of two integers ending with 8.
%F A348548 Lim_{n->infinity} a(n)/a(n-1) = 1.
%e A348548 64 = 8*8, 144 = 8*18, 224 = 8*28, 304 = 8*38, 324 = 18*18, 384 = 8*48, ...
%t A348548 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
%o A348548 (Python)
%o A348548 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)))
%o A348548 print(aupto(2550)) # _Michael S. Branicky_, Oct 22 2021
%Y A348548 Cf. A017317 (supersequence), A053742 (ending with 5), A139245 (ending with 2), A324297 (ending with 6), A346950 (ending with 3), A347253 (ending with 4), A348054 (ending with 7), A348549.
%K A348548 nonn,base
%O A348548 1,1
%A A348548 _Stefano Spezia_, Oct 22 2021