login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A203173 Central polygonal numbers that are nontrivially the product of two central polygonal numbers. 0
21, 91, 273, 651, 931, 1333, 2451, 3783, 4161, 4557, 6643, 10101, 14763, 20881, 22351, 28731, 31863, 38613, 50851, 52671, 65793, 83811, 99541, 105301, 130683, 139503, 160401, 194923, 221371, 234741, 235711, 280371, 316407, 332353, 391251, 427063, 457653, 532171, 615441 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Central polygonal numbers are those of the form n^2-n+1, or equivalently n^2+n+1. We exclude factorizations where one of the factors is 1.
LINKS
EXAMPLE
21 = 4^2+4+1 = 7*3 = (2^2+2+1)*(1^2+1+1), so 21 is in the sequence.
PROG
(PARI) iscpn(n)=local(r=sqrtint(n-1)); n==r^2+r+1
iscpnprod(n)=local(x, y); for(i=1, n, x=i^2+i+1; y=n\x; if(x>y, return(0)); if(n==x*y&&iscpn(y), return(1))); 0
ap(n)=for(k=1, n, if(iscpnprod(k^2+k+1), print1(k^2+k+1", ")))
CROSSREFS
Cf. A002061 (central polygonal numbers), A059826 (a subsequence except for first two terms).
Sequence in context: A225705 A259758 A353056 * A194532 A065827 A318036
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)