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!)
A065734 Largest square <= sigma(n). 1
1, 1, 4, 4, 4, 9, 4, 9, 9, 16, 9, 25, 9, 16, 16, 25, 16, 36, 16, 36, 25, 36, 16, 49, 25, 36, 36, 49, 25, 64, 25, 49, 36, 49, 36, 81, 36, 49, 49, 81, 36, 81, 36, 81, 64, 64, 36, 121, 49, 81, 64, 81, 49, 100, 64, 100, 64, 81, 49, 144, 49, 81, 100, 121, 81, 144, 64, 121, 81, 144 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A048760(A000203(n)).
MATHEMATICA
Table[Floor[Sqrt[DivisorSigma[1, n]]]^2, {n, 70}] (* Harvey P. Dale, Oct 05 2015 *)
PROG
(PARI) { for (n=1, 1000, a=sqrtint(sigma(n))^2; write("b065734.txt", n, " ", a) ) } \\ Harry J. Smith, Oct 28 2009
(Maxima)
A000203(n) := divsum(n) ;
A048760(n) := (floor(sqrt(n)))^2 ;
A065734(n) := A048760(A000203(n)) ;
for n from 1 thru 10 do print(A065734(n)) ; /* R. J. Mathar, Feb 13 2012 */
CROSSREFS
Sequence in context: A011412 A183030 A176213 * A288797 A200600 A048761
KEYWORD
easy,nonn
AUTHOR
Labos Elemer, Nov 15 2001
EXTENSIONS
Previous Mathematica program replaced by Harvey P. Dale, Oct 05 2015
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 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)