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!)
A351249 a(n) = n^9 * Sum_{p|n, p prime} 1/p^9. 11
0, 1, 1, 512, 1, 20195, 1, 262144, 19683, 1953637, 1, 10339840, 1, 40354119, 1972808, 134217728, 1, 397498185, 1, 1000262144, 40373290, 2357948203, 1, 5293998080, 1953125, 10604499885, 387420489, 20661308928, 1, 39453437071, 1, 68719476736, 2357967374, 118587877009, 42306732 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(A000040(n)) = 1.
EXAMPLE
a(6) = 20195; a(6) = 6^9 * Sum_{p|6, p prime} 1/p^9 = 10077696 * (1/2^9 + 1/3^9) = 20195.
PROG
(Python)
from sympy import primefactors
def A351249(n): return sum((n//p)**9 for p in primefactors(n)) # Chai Wah Wu, Feb 05 2022
CROSSREFS
Sequences of the form n^k * Sum_{p|n, p prime} 1/p^k for k = 0..10: A001221 (k=0), A069359 (k=1), A322078 (k=2), A351242 (k=3), A351244 (k=4), A351245 (k=5), A351246 (k=6), A351247 (k=7), A351248 (k=8), this sequence (k=9), A351262 (k=10).
Cf. A000040.
Sequence in context: A035596 A095843 A095882 * A190024 A190033 A190025
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Feb 05 2022
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 August 9 12:36 EDT 2024. Contains 375042 sequences. (Running on oeis4.)