A376403
a(0) = 0, and for n > 0, a(n) = a(n-1) + A276076(a(n-1)), where A276076 is the factorial base exp-function.
Original entry on oeis.org
0, 1, 3, 9, 39, 1089, 520179, 1466909163669354042297
Offset: 0
Cf. also
A143293 (when prepended with 0, an analogous sequence for
A276086).
A376400
a(0) = 1, and for n > 0, a(n) = a(n-1) * A276076(a(n-1)), where A276076 is the factorial base exp-function.
Original entry on oeis.org
1, 2, 6, 30, 1050, 70814493750, 7568077812763134673885891483463343434987134201379042046671543939118568739667281250
Offset: 0
Cf.
A376401 (=
A276075(a(n)), also gives the partial sums from its second term onward).
-
A276076(n) = { my(m=1, p=2, i=2); while(n, m *= (p^(n%i)); n = n\i; p = nextprime(1+p); i++); (m); };
A376400(n) = if(!n,1,my(x=A376400(n-1)); x*A276076(x));
Original entry on oeis.org
0, 1, 3, 9, 99, 353529, 274407373885532679, 2443417474326613595267894539584266773823049253134356679026035220285823429
Offset: 0
Showing 1-3 of 3 results.
Comments