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!)
A184390 a(n) = sum of numbers from 1 to pi(n), where pi(n) = A007955(n). 5
1, 3, 6, 36, 15, 666, 28, 2080, 378, 5050, 66, 1493856, 91, 19306, 25425, 524800, 153, 17009028, 190, 32004000, 97461, 117370, 276, 55037822976, 7875, 228826, 266085, 240956128, 435, 328050405000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{i = 1..pi(n)} i = A000217(A007955(n)) = (1/2)*A007955(n)*(A007955(n)+1).
EXAMPLE
For n = 6; pi(6) = 36; a(n) = (1/2)*36*37 = 666.
MATHEMATICA
# (#+1)/2&/@Array[Times@@Divisors[#]&, 40] (* Harvey P. Dale, Oct 05 2012 *)
PROG
(Python)
from math import isqrt
from sympy import divisor_count
def A184390(n): return (m:=((isqrt(n) if (c:=divisor_count(n)) & 1 else 1)*n**(c//2)))*(m+1)//2 # Chai Wah Wu, Jun 25 2022
CROSSREFS
Sequence in context: A228279 A009197 A205336 * A359424 A359423 A358765
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jan 12 2011
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)