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!)
A289830 a(n) satisfies the equation n/(n-1) + a(n)/n! = H(n), where H(n) is the n-th harmonic number. 0
-1, 2, 18, 124, 900, 7188, 63504, 618336, 6596640, 76635360, 963895680, 13056819840, 189581333760, 2938083321600, 48416639846400, 845487698227200, 15598004134809600, 303161985274982400, 6191998554470400000, 132599321499875328000, 2970952207377960960000 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
FORMULA
a(n) = n! * (H(n) - n/(n-1)). - Alois P. Heinz, Jul 13 2017
MATHEMATICA
Table[n!*(HarmonicNumber[n] - n/(n - 1)), {n, 2, 22}] (* Michael De Vlieger, Jul 13 2017 *)
PROG
(Python)
from sympy import factorial, harmonic
def a(n): return factorial(n-2)*(harmonic(n)*(n-1) - n)*n
print([a(n) for n in range(2, 26)]) # Indranil Ghosh, Jul 14 2017
CROSSREFS
Sequence in context: A052610 A052653 A342124 * A361304 A358952 A060589
KEYWORD
sign
AUTHOR
Joseph Wheat, Jul 12 2017
EXTENSIONS
More terms from Alois P. Heinz, Jul 13 2017
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 23 14:15 EDT 2024. Contains 371914 sequences. (Running on oeis4.)