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 A084024 #15 Aug 23 2020 15:30:33 %S A084024 1,22,44,111,141,171,2112,2332,2552,2772,50005,50105,50205,50305, %T A084024 50405,201102,204402,207702,210012,213312,216612,1002001,1009001, %U A084024 1011101,1018101,1020201,1027201,1036301,21100112,21111112,21122112,21133112,21144112,21155112,21166112,21177112 %N A084024 Triangle read by rows in which row n gives n smallest n-digit multiples of n that are palindromes. %F A084024 T(n, 1) >= A053041(n); T(n, 1) = A083123(n). - _Michel Marcus_, Mar 28 2020 %e A084024 1 %e A084024 22 44 %e A084024 111 141 171 %e A084024 2112 2332 2552 2772 %e A084024 ... %t A084024 snm[n_]:=Module[{a=Floor[10^(n-1)],b=Floor[10^n-1]},Select[ Select[ Range[ a,b],Divisible[#,n]&&IntegerLength[#]==n&],PalindromeQ,n]]; Array[ snm,8]//Flatten (* _Harvey P. Dale_, Aug 23 2020 *) %o A084024 (PARI) isok(k, n) = my(d=digits(k*n)); (#d == n) && (Vecrev(d) == d); %o A084024 row(n) = {my(v=vector(n), k = ceil(10^(n-1)/n)); for (i=1, n, while(! isok(k, n), k++); v[i] = k*n; k++;); v;} \\ _Michel Marcus_, Mar 28 2020 %Y A084024 Cf. A053041, A083123, A084025, A084026, A084027, A084028. %K A084024 base,nonn,tabl %O A084024 1,2 %A A084024 _Amarnath Murthy_ and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 23 2003 %E A084024 Corrected and extended by _Ray Chandler_, Jun 12 2003 %E A084024 More terms from _Michel Marcus_, Mar 28 2020