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.

A358861 a(n) is the smallest centered n-gonal number divisible by exactly n centered n-gonal numbers.

This page as a plain text file.
%I A358861 #15 Feb 16 2025 08:34:04
%S A358861 64,925,2976,93457,866272,11025,3036880,18412718645101,9283470627432,
%T A358861 201580440699781,92839099743040,5236660451226975,66779973961058176
%N A358861 a(n) is the smallest centered n-gonal number divisible by exactly n centered n-gonal numbers.
%C A358861 a(17) = 1415913990579036. - _Daniel Suteu_, Dec 10 2022
%H A358861 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/CenteredPolygonalNumber.html">Centered Polygonal Number</a>
%H A358861 <a href="/index/Di#divisors">Index entries for sequences related to divisors of numbers</a>
%e A358861 a(5) = 2976, because 2976 is a centered pentagonal number that has 5 centered pentagonal divisors {1, 6, 16, 31, 2976} and this is the smallest such number.
%o A358861 (PARI) a(n) = if(n<3, return()); for(k=1, oo, my(t=((n*k*(k+1))/2+1)); if(sumdiv(t, d, issquare(8*(d-1)/n + 1) && (sqrtint((8*(d-1))/n + 1)-1)%2 == 0) == n, return(t))); \\ _Daniel Suteu_, Dec 10 2022
%Y A358861 Cf. A005179, A358541, A358859, A358860.
%K A358861 nonn,more
%O A358861 3,1
%A A358861 _Ilya Gutkovskiy_, Dec 03 2022
%E A358861 a(10)-a(15) from _Daniel Suteu_, Dec 06 2022