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!)
A144040 Shifts left when Euler transform applied 8 times. 3
0, 1, 1, 9, 53, 401, 2967, 23659, 192615, 1613687, 13769538, 119419761, 1049154071, 9318828138, 83541286988, 754920397795, 6869170162829, 62884110339333, 578768613062948, 5352307127138701, 49708821972158231, 463445557084360740, 4335898935627480699 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
N. J. A. Sloane, Transforms
MAPLE
k:=8: with(numtheory): etr:= proc(p) local b; b:=proc(n) option remember; local d, j; if n=0 then 1 else add(add(d*p(d), d=divisors(j)) *b(n-j), j=1..n)/n fi end end: a:='a': b[1]:=etr(a): for t from 2 to k do b[t]:= etr(b[t-1]) od: a:= n-> `if`(n<2, n, b[k](n-1)): seq(a(n), n=0..30);
MATHEMATICA
k = 8; etr[p_] := Module[{b}, b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d*p[d], {d, Divisors[j]}]*b[n-j], {j, 1, n}]/n]; b]; b[1] = etr[a]; For[t = 2, t <= k, t++, b[t] = etr[b[t-1]]]; a[n_] := If[n<2, n, b[k][n-1]]; Table[a[n], {n, 0, 30}] (* Jean-François Alcover, Mar 09 2015, after Alois P. Heinz *)
CROSSREFS
8th column of A144042.
Cf. A316108.
Sequence in context: A038761 A003698 A001688 * A336184 A326606 A052108
KEYWORD
eigen,nonn
AUTHOR
Alois P. Heinz, Sep 07 2008
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 10:56 EDT 2024. Contains 371791 sequences. (Running on oeis4.)