login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A038072 Shifts left under Euler transform. 2
-1, -1, -1, 0, 1, 2, 0, -3, -5, -1, 11, 19, 4, -42, -78, -18, 172, 333, 88, -747, -1483, -436, 3355, 6834, 2193, -15417, -32248, -11206, 72264, 154900, 57929, -344282, -755103, -302126, 1661464, 3726663, 1586904, -8103245, -18581402, -8384292, 39876825 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
N. J. A. Sloane, Transforms
MAPLE
with(numtheory): a:= proc(n) option remember; local d, j; if n=1 then -1 else (add(d*a(d), d=divisors(n-1)) +add(add(d*a(d), d=divisors(j)) *a(n-j), j=1..n-2))/(n-1) fi end: seq(a(n), n=1..40); # Alois P. Heinz, Sep 06 2008
MATHEMATICA
a[n_] := a[n] = If[n == 1, -1, (Sum[d a[d], {d, Divisors[n-1]}] + Sum[Sum[d a[d], {d, Divisors[j]}] a[n-j], {j, 1, n-2}])/(n-1)];
Array[a, 40] (* Jean-François Alcover, Nov 08 2020, after Alois P. Heinz *)
CROSSREFS
Cf. A038073.
Sequence in context: A035347 A094126 A293269 * A215482 A161481 A272695
KEYWORD
sign,eigen
AUTHOR
Christian G. Bower, Jan 04 1999
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 December 8 11:15 EST 2023. Contains 367678 sequences. (Running on oeis4.)