OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..300
Hugh Erling, Python program
EXAMPLE
11935 has representations P(n,k) = P(5, 1195) = P(7, 570) = P(10, 267) = P(14, 133) = P(35, 22) = P(55, 10) = P(154, 3).
12376 has representations P(n,k) = P(4, 2064) = P(7, 591) = P(16, 105) = P(26, 40) = P(34, 24) = P(56, 10) = P(91, 5).
21736 has representations P(n,k) = P(4, 3624) = P(8, 778) = P(11, 397) = P(16, 183) = P(19, 129) = P(22, 96) = P(208, 3).
MAPLE
filter:= proc(x) local n, k, ct;
ct:= 0;
for n in select(t -> t >=3, NumberTheory:-Divisors(2*x)) do
k:= 2*(n^2-2*n+x)/(n*(n-1));
if k::posint and k >= 3 then ct:= ct+1; if ct > 7 then return false fi fi
od;
ct = 7
end proc:
select(filter, [$1..2*10^5]); # Robert Israel, Feb 03 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Hugh Erling, Oct 29 2018
STATUS
approved
