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 A358859 #12 Feb 16 2025 08:34:04 %S A358859 6,36,210,4560,6426,326040,4232250,1969110,296676380,4798080, %T A358859 166289760,73765692000,712750500,50561280,33944067893736, %U A358859 2139168754800,4292572951800,1414764341760,72461756727360,180975331456920,1870768457500800,5498331930000,153698278734000 %N A358859 a(n) is the smallest n-gonal number divisible by exactly n n-gonal numbers. %C A358859 The corresponding indices of n-gonal numbers are 3, 6, 12, 48, 51, 330, 1100, 702, ... %H A358859 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PolygonalNumber.html">Polygonal Number</a> %H A358859 <a href="/index/Di#divisors">Index entries for sequences related to divisors of numbers</a> %e A358859 a(5) = 210, because 210 is a pentagonal number that has 5 pentagonal divisors {1, 5, 35, 70, 210} and this is the smallest such number. %o A358859 (PARI) a(n) = if(n<3, return()); for(k=1, oo, my(t=(k*(n*k - n - 2*k + 4))\2); if(sumdiv(t, d, ispolygonal(d, n)) == n, return(t))); \\ _Daniel Suteu_, Dec 04 2022 %Y A358859 Cf. A005179, A076983, A358539, A358860, A358861. %K A358859 nonn %O A358859 3,1 %A A358859 _Ilya Gutkovskiy_, Dec 03 2022 %E A358859 a(11)-a(25) from _Daniel Suteu_, Dec 04 2022