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”).

A342928
The smallest polygonal index of numbers that have exactly two different representations as polygonal numbers (A177029).
1
3, 3, 4, 3, 4, 3, 4, 3, 5, 3, 3, 3, 4, 5, 3, 4, 3, 4, 3, 7, 4, 3, 3, 4, 3, 3, 5, 3, 3, 4, 4, 3, 5, 3, 4, 3, 8, 3, 4, 5, 3, 3, 4, 3, 3, 5, 4, 11, 3, 4, 5, 3, 4, 3, 7, 3, 4, 3, 3, 5, 3, 4, 3, 4, 3, 13, 4, 3, 3, 4, 3, 3, 4, 5, 3, 3, 4, 5, 3, 4, 3, 4, 5, 7, 3, 4
OFFSET
1,1
COMMENTS
By definition, a(n) can never be equal to 2. Up to 10^7, no n has been found with a(n) = 6, 10 or 16.
EXAMPLE
6 is A177029(1); it is a 3-gonal and 6-gonal number; it is the 3rd triangular number so a(1) = 3.
9 is A177029(2); it is a 4-gonal and 9-gonal number; it is the 3rd square number so a(2) = 3.
PROG
(PARI) row(n) = my(v=List()); fordiv(2*n, k, if(k<2, next); if(k==n, break); my(s=(2*n/k-4+2*k)/(k-1)); if(denominator(s)==1, listput(v, s))); Vecrev(v); \\ A177028
lista(nn) = {for (n=3, nn, my(r = row(n)); if (#r == 2, my(k); ispolygonal(n, r[1], &k); print1(k, ", ")); ); }
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Mar 29 2021
STATUS
approved