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!)
A324501 a(n) = numerator of Sum_{d|n} (1/pod(d)) where pod(k) = the product of the divisors of k (A007955). 1
1, 3, 4, 13, 6, 67, 8, 105, 37, 171, 12, 3433, 14, 323, 346, 1681, 18, 11071, 20, 14681, 652, 771, 24, 664321, 151, 1067, 1000, 38921, 30, 1681201, 32, 53793, 1552, 1803, 1646, 20396233, 38, 2243, 2146, 4737921, 42, 6258673, 44, 146345, 143506, 3267, 48 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Sum_{d|n} (1/pod(d)) >= 1 for all n >= 1.
LINKS
EXAMPLE
Sum_{d|n} (1/pod(d)) for n >= 1: 1, 3/2, 4/3, 13/8, 6/5, 67/36, 8/7, 105/64, 37/27, 171/100, 12/11, 3433/1728, ...
For n=4; Sum_{d|4} (1/pod(d)) = 1/pod(1) + 1/pod(2) + 1/pod(4) = (1/1) + (1/2) + (1/8) = 13/8; a(4) = 13.
MATHEMATICA
Table[Numerator[Sum[Product[1/d , {d, Divisors[k]}], {k, Divisors[n]}]], {n, 1, 50}] (* G. C. Greubel, Mar 04 2019 *)
PROG
(Magma) [Numerator(&+[1 / &*[c: c in Divisors(d)]: d in Divisors(n)]): n in [1..50]]
(PARI) a(n) = numerator(sumdiv(n, d, 1/vecprod(divisors(d)))); \\ Michel Marcus, Mar 03 2019
(Sage) [sum(product(1/j for j in k.divisors()) for k in n.divisors() ).numerator() for n in (1..50)] # G. C. Greubel, Mar 04 2019
CROSSREFS
Cf. A007955, A324502 (denominators).
Sequence in context: A220847 A127611 A308688 * A359112 A342675 A330158
KEYWORD
nonn,frac
AUTHOR
Jaroslav Krizek, Mar 02 2019
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.)