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!)
A258845 The pi-based arithmetic derivative of n!. 2
0, 0, 1, 7, 52, 332, 2832, 22704, 242112, 2662848, 30620160, 354965760, 5057925120, 68627036160, 1054183818240, 17469144806400, 321351896678400, 5609441772748800, 112707637036646400, 2192664093342105600, 47745925079924736000, 1065919878891012096000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = A258851(n!) = A258851(A000142(n)).
MAPLE
with(numtheory):
d:= n-> n*add(i[2]*pi(i[1])/i[1], i=ifactors(n)[2]):
a:= proc(n) option remember;
`if`(n<2, 0, a(n-1)*n+(n-1)!*d(n))
end:
seq(a(n), n=0..25);
MATHEMATICA
d[n_] := n*Sum[i[[2]]*PrimePi[i[[1]]]/i[[1]], {i, FactorInteger[n]}];
a[n_] := a[n] = If[n < 2, 0, a[n-1]*n + (n-1)!*d[n]];
Table[a[n], {n, 0, 25}] (* Jean-François Alcover, Mar 24 2017, translated from Maple *)
CROSSREFS
Sequence in context: A206809 A027542 A254946 * A037593 A037684 A246513
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 12 2015
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 04:35 EDT 2024. Contains 371782 sequences. (Running on oeis4.)