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!)
A358859 a(n) is the smallest n-gonal number divisible by exactly n n-gonal numbers. 3
6, 36, 210, 4560, 6426, 326040, 4232250, 1969110, 296676380, 4798080, 166289760, 73765692000, 712750500, 50561280, 33944067893736, 2139168754800, 4292572951800, 1414764341760, 72461756727360, 180975331456920, 1870768457500800, 5498331930000, 153698278734000 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
COMMENTS
The corresponding indices of n-gonal numbers are 3, 6, 12, 48, 51, 330, 1100, 702, ...
LINKS
Eric Weisstein's World of Mathematics, Polygonal Number
EXAMPLE
a(5) = 210, because 210 is a pentagonal number that has 5 pentagonal divisors {1, 5, 35, 70, 210} and this is the smallest such number.
PROG
(PARI) a(n) = if(n<3, return()); for(k=1, oo, my(t=(k*(n*k - n - 2*k + 4))\2); if(sumdiv(t, d, ispolygonal(d, n)) == n, return(t))); \\ Daniel Suteu, Dec 04 2022
CROSSREFS
Sequence in context: A357027 A357093 A357029 * A357091 A268454 A171280
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 03 2022
EXTENSIONS
a(11)-a(25) from Daniel Suteu, Dec 04 2022
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 July 28 23:06 EDT 2024. Contains 374727 sequences. (Running on oeis4.)