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!)
A081401 Pseudologarithm (A056239) of n!: a(n) = A056239(A000142(n)). 5
0, 1, 3, 5, 8, 11, 15, 18, 22, 26, 31, 35, 41, 46, 51, 55, 62, 67, 75, 80, 86, 92, 101, 106, 112, 119, 125, 131, 141, 147, 158, 163, 170, 178, 185, 191, 203, 212, 220, 226, 239, 246, 260, 267, 274, 284, 299, 305, 313, 320, 329, 337, 353, 360, 368, 375, 385, 396, 413 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
As A056239 is fully additive sequence, this sequence gives its partial sums. - Antti Karttunen, Jun 28 2020
LINKS
FORMULA
a(n) = Sum(k*e(k)) where k runs through indices of prime factors of n!, while e(k) is the exponent of the corresponding prime factor.
EXAMPLE
n=8: 8! = 40320 = 2*2*2*2*2*2*2*3*3*5*7, p-indices = {1,2,3,4}, exponents = {7,2,1,1}; a(8) = 1*7 + 2*2 + 3*1 + 4*1 = 7 + 4 + 3 + 4 = 18.
MAPLE
a:= n-> add (numtheory[pi](i[1])*i[2], i=ifactors(n!)[2]):
seq (a(n), n=1..100); # Alois P. Heinz, Aug 09 2012
MATHEMATICA
Array[Total[FactorInteger[#!] /. {p_, c_} /; p > 0 :> PrimePi[p] c] &, 59] (* Michael De Vlieger, Jun 26 2020 *)
CROSSREFS
Cf. also A335860.
Sequence in context: A284442 A335860 A207038 * A003311 A108279 A002821
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 31 2003
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)