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!)
A135369 a(0)=1, a(1)=2; thereafter, let n! = p(1)^b(1)...p(r)^b(r) be the prime factorization of n!. Then a(n) = Sum_{i=1..r} (p(i) + b(i)). 1
1, 2, 3, 7, 9, 15, 17, 25, 28, 30, 32, 44, 47, 61, 63, 65, 69, 87, 90, 110, 113, 115, 117, 141, 145, 147, 149, 152, 155, 185, 188, 220, 225, 227, 229, 231, 235, 273, 275, 277, 281, 323, 326, 370, 373, 376, 378, 426, 431, 433, 436, 438, 441, 495, 499, 501, 505 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A008474(n!) if n>1. - R. J. Mathar, Feb 28 2008
MAPLE
A001222 := proc(n) numtheory[bigomega](n) ; end:
A008472 := proc(n) add(op(1, i), i=ifactors(n)[2]) ; end:
A008474 := proc(n) A001222(n)+A008472(n) ; end:
A135369 := proc(n) if n < 2 then n+1 ; else A008474(n!) ; fi ; end: seq(A135369(n), n=0..80) ; # R. J. Mathar, Feb 28 2008
MATHEMATICA
Join[{1}, Table[Total[Flatten[FactorInteger[n!]]], {n, 60}]] (* Harvey P. Dale, Feb 26 2012 *)
CROSSREFS
Sequence in context: A305121 A014837 A019312 * A294283 A294122 A211539
KEYWORD
easy,nonn
AUTHOR
Ctibor O. Zizka, Feb 17 2008
EXTENSIONS
More terms from R. J. Mathar, Feb 28 2008
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 May 7 11:37 EDT 2024. Contains 372302 sequences. (Running on oeis4.)