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!)
A081402 a(n) = A008475(n!). 2
0, 2, 5, 11, 16, 30, 37, 149, 221, 369, 380, 1310, 1323, 2389, 2975, 33695, 33712, 72312, 72331, 269439, 282855, 545109, 545132, 4254514, 4269514, 8463974, 9999248, 35167130, 35167159, 71972737, 71972768, 2152347552, 2161914700 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(1) = 0 since 1! = 1 has no prime factor;
a(8) = 2^7 + 3^2 + 5 + 7 = 149 since 8! = 2^7*3^2*5*7.
MATHEMATICA
ffi[x_] := Flatten[FactorInteger[x]] lf[x_] := Length[FactorInteger[x]] ba[x_] := Table[Part[ffi[x], 2*w-1], {w, 1, lf[x]}] ep[x_] := Table[Part[ffi[x], 2*w], {w, 1, lf[x]}] supo[x_] := Apply[Plus, ba[x]^ep[x]] Table[supo[w], {w, 1, 25}]
PROG
(PARI) a(n) = my(f=factor(n!)); sum(k=1, #f~, f[k, 1]^f[k, 2]); \\ Michel Marcus, Jul 09 2018
CROSSREFS
Sequence in context: A082083 A287558 A024917 * A281023 A359399 A118660
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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)