login
A321159
Numbers that have exactly 9 representations as a k-gonal number, P(n,k) = n*((k-2)*n - (k-4))/2, k and n >= 3.
5
27405, 126225, 194481, 201825, 273105, 478401, 538461, 615681, 718641, 859600, 862785, 1056160, 1187145, 1257201, 1328481, 1413126, 1439361, 1532601, 1540540, 1619541, 1625625, 1708785, 1842400, 1849926, 1890945
OFFSET
1,1
EXAMPLE
a(1) 27405 has representations P(n,k) = P(3, 9136)=P(5, 2742)=P(9, 763)=P(14, 303)=P(18, 181)=P(27, 80)=P(35, 48)=P(63, 16)=P(105, 7).
a(2) 126225 has representations P(n,k) = P(3, 42076)=P(5, 12624)=P(9, 3508)=P(15, 1204)=P(17, 930)=P(33, 241)=P(50, 105)=P(99, 28)=P(225, 7).
a(3) 194481 has representations P(n,k) = P(3, 64828)=P(6, 12967)=P(9, 5404)=P(14, 2139)=P(18, 1273)=P(21, 928)=P(27, 556)=P(81, 62)=P(441, 4).
PROG
(Python) # See Erling link.
(PARI) isok(n) = sum(k=3, n-1, ispolygonal(n, k)) == 9; \\ Michel Marcus, Nov 02 2018
KEYWORD
nonn
AUTHOR
Hugh Erling, Oct 29 2018
STATUS
approved