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!)
A036897 Square root of odd refactorable numbers. 5
1, 3, 15, 21, 25, 33, 39, 45, 51, 57, 69, 75, 81, 87, 93, 111, 123, 129, 141, 159, 177, 183, 189, 201, 213, 219, 225, 237, 249, 267, 291, 303, 309, 315, 321, 327, 339, 343, 381, 393, 405, 411, 417, 447, 453, 471, 489, 495, 501, 519, 525, 537, 543, 567, 573 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Odd refactorable numbers are always squares.
LINKS
S. Colton, Refactorable Numbers - A Machine Invention, J. Integer Sequences, Vol. 2, 1999, #2.
FORMULA
a(n) = sqrt(A036896(n)). - Amiram Eldar, Jul 02 2019
EXAMPLE
15^2 is refactorable because 225 has 9 divisors and 9 divides 225.
MATHEMATICA
Select[Range[1, 1000, 2], Divisible[#^2, DivisorSigma[0, #^2]] &] (* Amiram Eldar, Jul 02 2019 *)
PROG
(PARI) isrefac(n) = ! (n % numdiv(n));
lista(nn) = {forstep (n = 1, nn, 2, if (isrefac(n), print1(sqrtint(n), ", ")); ); } \\ Michel Marcus, Aug 31 2013
CROSSREFS
Sequence in context: A316751 A001897 A074214 * A129966 A354675 A243128
KEYWORD
nonn
AUTHOR
Simon Colton (simonco(AT)cs.york.ac.uk)
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 19 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)