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.
%I A349774 #21 Dec 04 2021 05:52:21 %S A349774 161596,222778,366796,962578,1611910,2480878,3301165,4290985,13320541, %T A349774 23588146,29272726,43743981,50818321,68041945,79512355,100614205, %U A349774 143981965,161757091,172896310,194626585,200710630,275338311,282161890,352331785,410712130,457062495,457092730 %N A349774 Numbers that start a run of four consecutive triangular numbers with four prime factors (counted with multiplicity). %e A349774 a(1) = 161596 because 161596 is the smallest number in the first set of four consecutive triangular numbers with four prime factors (counted with multiplicity), i.e., (161596 = 2*2*71*569, 162165 = 3*5*19*569, 162735 = 3*5*19*571, 163306 = 2*11*13*571). %t A349774 t[n_] := n*(n + 1)/2; q[n_] := PrimeOmega[n] == 4; Select[Partition[t /@ Range[35000], 4, 1], AllTrue[#, q] &][[;; , 1]] (* _Amiram Eldar_, Nov 29 2021 *) %Y A349774 Cf. A000217, A128905, A349773. %K A349774 nonn %O A349774 1,1 %A A349774 _Shyam Sunder Gupta_, Nov 29 2021