login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A203468
Numbers that have a unique triangular proper divisor greater than 1.
1
6, 9, 15, 20, 21, 27, 33, 39, 40, 50, 51, 56, 57, 69, 70, 80, 81, 87, 93, 99, 100, 111, 112, 117, 123, 129, 130, 141, 153, 159, 160, 170, 171, 177, 182, 183, 190, 196, 200, 201, 207, 213, 219, 224, 230, 237, 243, 249, 250, 260, 261, 267, 272, 275, 279, 290
OFFSET
1,1
LINKS
EXAMPLE
40 has a unique triangular proper divisor greater than 1: 10.
PROG
(PARI)
istriang(x)=issquare(8*x+1)
numpropdivtriang(n)={my(m=0); for(i=3, n/2, if(istriang(i)&&n/i==n\i, m+=1)); return(m)}
{t=0; for(n=1, 200, k=numpropdivtriang(n); if(k==1, t+=1; write("B203468.txt", t, " ", n)))}
CROSSREFS
Cf. A076170.
Sequence in context: A316032 A360395 A316033 * A316034 A316035 A316036
KEYWORD
nonn
AUTHOR
Antonio Roldán, Jan 14 2013
STATUS
approved