login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A136404 Square numbers with more divisors than any smaller square number. 3
1, 4, 16, 36, 144, 576, 900, 3600, 14400, 32400, 44100, 129600, 176400, 705600, 1587600, 2822400, 6350400, 21344400, 57153600, 85377600, 192099600, 341510400, 768398400, 3073593600, 6915585600, 12294374400, 14428814400, 32464832400, 57715257600, 129859329600 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Being the square of a number in A002182 is neither necessary nor sufficient.

Conjecture: square roots of the terms of this sequence are the same terms as A126098

These are the squares of the indices of the RECORDS of A048691. - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 04 2008

LINKS

Donovan Johnson, Table of n, a(n) for n = 1..78 (terms < 10^23)

EXAMPLE

900 qualifies because 576 has only 21 divisors and 900 has 27. 1296 does not because 1296 has only 25 divisors as opposed to the 27 of the smaller 900.

MAPLE

a := 0 : for n from 1 to 1000000 do ndvs := numtheory[tau](n^2) ; if ndvs > a then printf("%d, ", n^2) ; a := ndvs ; fi ; od: - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 04 2008

with(numtheory): a:=proc(n) if max(seq(tau(j^2), j=1..n-1))<tau(n^2) then n^2 else end if end proc: seq(a(n), n=1..10000); - Emeric Deutsch (deutsch(AT)duke.poly.edu), Apr 04 2008

CROSSREFS

Cf. A002182.

Sequence in context: A075408 A206981 A181795 * A046952 A081456 A130279

Adjacent sequences:  A136401 A136402 A136403 * A136405 A136406 A136407

KEYWORD

nonn

AUTHOR

J. Lowell (jhbubby(AT)mindspring.com), Mar 30 2008

EXTENSIONS

More terms from R. J. Mathar (mathar(AT)strw.leidenuniv.nl) and Donovan Johnson (donovan.johnson(AT)yahoo.com), Apr 04 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 21:13 EST 2012. Contains 206085 sequences.