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!)
A111413 a(n) = f(f(n+1))-f(f(n)), where f(m) = Euler(m) = A000111(m). 1
0, 0, 0, 15, 19391512129, 703237958001393736999896827714634659411015090272684227831001142371615151 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
MAPLE
b:= proc(u, o) option remember;
`if`(u+o=0, 1, add(b(o-1+j, u-j), j=1..u))
end:
a:= n-> (f-> f(f(n+1))-f(f(n)))(k-> b(k, 0)):
seq(a(n), n=0..5); # Alois P. Heinz, Aug 17 2021
MATHEMATICA
$RecursionLimit = Infinity;
t[n_, 0] := Boole[n == 0];
t[n_, k_] := t[n, k] = t[n, k-1] + t[n-1, n-k];
f[n_] := t[n, n];
a[n_] := f[f[n+1]] - f[f[n]];
Table[a[n], {n, 0, 5}] (* Jean-François Alcover, Apr 25 2022 *)
CROSSREFS
Cf. A000111.
Sequence in context: A115242 A296528 A072723 * A181029 A072838 A023919
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 12 2005
EXTENSIONS
Definition corrected by N. J. A. Sloane, Feb 14 2018
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 25 05:56 EDT 2024. Contains 371964 sequences. (Running on oeis4.)