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 A322570 #44 Sep 08 2022 08:46:23 %S A322570 1,2,3,4,5,6,12,16,17,33,34,48,54,285,333,334,365,385,430,471,516,816, %T A322570 1049,3333,3334,33333,33334,333333,333334,483048,3333333,3333334, %U A322570 33333333,33333334,333333333,333333334,3333333333,3333333334,33333333333,33333333334 %N A322570 Positive integers k such that A270710(k) (= (k+1)*(3*k-1)) have only 1 or 2 different digits in base 10. %H A322570 Giovanni Resta, <a href="/A322570/b322570.txt">Table of n, a(n) for n = 1..50</a> %F A322570 For k > 0, A002277(k) is a term. %F A322570 For k >= 0, A002277(k) + 1 (= A093137(k)) is a term. %t A322570 Select[Range@ 50000, Length@ Union@ IntegerDigits[3 #^2 + 2 # - 1] <= 2 &] (* _Giovanni Resta_, Sep 04 2019 *) %o A322570 (PARI) for(k=1, 1e8, if(#Set(digits(3*k^2+2*k-1))<=2, print1(k", "))) %o A322570 (Magma) [k:k in [1..10000000]| #Set(Intseq((k+1)*(3*k-1))) le 2]; // _Marius A. Burtea_, Aug 29 2019 %Y A322570 Cf. A002277, A016069, A093137, A213517 (in case of triangular numbers), A270710, A322571. %K A322570 nonn,base %O A322570 1,2 %A A322570 _Seiichi Manyama_, Aug 29 2019 %E A322570 a(35)-a(36) from _Jinyuan Wang_, Aug 30 2019 %E A322570 a(37)-a(40) from _Giovanni Resta_, Sep 04 2019