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!)
A358545 a(n) is the smallest number with exactly n divisors that are centered square numbers. 4
1, 5, 25, 325, 1625, 1105, 5525, 27625, 160225, 1022125, 801125, 5928325, 8491925, 29641625, 42459625, 444215525, 314201225, 2003613625, 1571006125, 14826740825, 12882250225, 127081657625, 64411251125, 88717383625 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Any subsequent terms are > 10^10. - Lucas A. Brown, Dec 24 2022
LINKS
Lucas A. Brown, Python program.
Eric Weisstein's World of Mathematics, Centered Square Number
EXAMPLE
a(3) = 25 because 25 has 3 centered square divisors {1, 5, 25} and this is the smallest such number.
PROG
(PARI) iscsq(n) = issquare(2*n-1); \\ A001844
a(n) = my(k=1); while (sumdiv(k, d, iscsq(d)) != n, k++); k; \\ Michel Marcus, Nov 21 2022
CROSSREFS
Sequence in context: A370336 A145773 A197195 * A285602 A072324 A204544
KEYWORD
nonn,more
AUTHOR
Ilya Gutkovskiy, Nov 21 2022
EXTENSIONS
a(12)-a(15) from Michel Marcus, Nov 21 2022
a(16) from Martin Ehrenstein, Dec 02 2022
a(17)-a(24) from Jinyuan Wang, Dec 02 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 6 14:15 EDT 2024. Contains 374057 sequences. (Running on oeis4.)