OFFSET
1,3
COMMENTS
A dual to A011772.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..20000
J. Sandor, Geometric Theorems, Diophantine Equations, Arithmetic Functions, American Research Press, 302 p., 2002.
EXAMPLE
ps(3) = 2 because 1+2 divides 3 and 2 is the largest such number.
ps(5) = 1 because 1 divides 5, while 1+2, 1+2+3 do not divide 5.
PROG
(PARI) a(n) = {m = 1; while ((t = m*(m+1)/2) <= n, if (n % t == 0, goodm = m); m ++; ); goodm; } \\ Michel Marcus, Aug 12 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
K. Reddy (kakie(AT)indiainfo.com), Jun 03 2003
EXTENSIONS
More terms from Sam Alexander, Jan 03 2004
STATUS
approved