Euler Sums系列(五)
\[\Large\displaystyle \sum_{n=1}^{\infty} \frac{\widetilde{H_n}}{n^{3}}\]
where \(\widetilde{H_n}\) is the alternating harmonic number.
\(\Large\mathbf{Solution:}\)
Namely,
\[\widetilde{H_n} = \ln (2) + (-1)^{n-1} \int_{0}^{1} \frac{x^{n}}{1+x} \mathrm dx \]
Using that representation,
\[\begin{align*} {\sum_{n=1}^{\infty} \frac{\widetilde{H_n}}{n^{3}}} &= \ln (2) \sum_{n=1}^{\infty} \frac{1}{n^{3}} + \sum_{n=1}^{\infty} \frac{(-1)^{n-1}}{n^{3}} \int_{0}^{1} \frac{x^{n}}{1+x} \mathrm dx \\ &= \zeta(3) \ln(2) - \int_{0}^{1} \frac{1}{1+x} \sum_{n=1}^{\infty} \frac{(-x)^{n}}{n^{3}}\mathrm dx \\ &= \zeta(3) \ln(2) - \int_{0}^{1} \frac{\text{Li}_{3}(-x)}{1+x} \mathrm dx \\ &= \zeta(3) \ln(2) - \text{Li}_{3}(-x) \ln(1+x) \Bigg|^{1}_{0} + \int_{0}^{1} \frac{\text{Li}_{2}(-x) \ln(1+x)}{x} \mathrm dx \\ &= \zeta(3) \ln(2) + \frac{3}{4} \zeta(3) \ln(2) - \frac{1}{2} \Big( \text{Li}_{2}(-1) \Big)^{2} \\ &= \Large\boxed{\displaystyle \color{blue}{\frac{7}{4} \zeta(3) \ln(2) - \frac{\pi^{4}}{288}}} \end{align*}\]
This also can be Evaluated by using the fact that
\[\large\boxed{\displaystyle \color{DarkOrange} {\sum_{n=1}^\infty \frac{\widetilde{H_n}}{n^q} = \zeta(q)\ln(2)-\frac{q}{2}\zeta(q+1)+2\eta(z)+\sum_{k=1}^q \eta(k)\eta(q-k+1)}}\]
where \(\eta(z)\) is the Dirichlet Eta Function and \(\displaystyle \widetilde{H_n}=\sum_{j=1}^n \frac{(-1)^{j-1}}{j}\).
Euler Sums系列(五)的更多相关文章
- Euler Sums系列(六)
\[\Large\displaystyle \sum_{n=1}^{\infty}\frac{H_{2n}}{n(6n+1)}\] \(\Large\mathbf{Solution:}\) Let \ ...
- Euler Sums系列(一)
\[\Large\sum_{n=1}^{\infty} \frac{H_{n}}{2^nn^4}\] \(\Large\mathbf{Solution:}\) Let \[\mathcal{S}=\s ...
- Euler Sums系列(四)
\[\Large\displaystyle \sum_{n=1}^\infty (-1)^n \frac{H_n}{2n+1}=\mathbf{G}-\frac{\pi}{2}\ln(2)\] \(\ ...
- Euler Sums系列(三)
\[\Large\sum_{n=1}^{\infty}\frac{\left(H_{n}^{(2)}\right)^{2}}{n^{2}}=\frac{19}{24}\zeta(6)+\zeta^{2 ...
- Euler Sums系列(二)
\[\Large\sum_{n=0}^\infty \frac{H_{2n+1}}{(2n+1)^2}=\frac{21}{16}\zeta(3)\] \(\Large\mathbf{Proof:}\ ...
- CSS 魔法系列:纯 CSS 绘制各种图形《系列五》
我们的网页因为 CSS 而呈现千变万化的风格.这一看似简单的样式语言在使用中非常灵活,只要你发挥创意就能实现很多比人想象不到的效果.特别是随着 CSS3 的广泛使用,更多新奇的 CSS 作品涌现出来. ...
- Netty4.x中文教程系列(五)编解码器Codec
Netty4.x中文教程系列(五)编解码器Codec 上一篇文章详细解释了ChannelHandler的相关构架设计,版本和设计逻辑变更等等. 这篇文章主要在于讲述Handler里面的Codec,也就 ...
- WCF编程系列(五)元数据
WCF编程系列(五)元数据 示例一中我们使用了scvutil命令自动生成了服务的客户端代理类: svcutil http://localhost:8000/?wsdl /o:FirstServic ...
- JVM系列五:JVM监测&工具
JVM系列五:JVM监测&工具[整理中] http://www.cnblogs.com/redcreen/archive/2011/05/09/2040977.html 前几篇篇文章介绍了介 ...
随机推荐
- linux下载phantomjs记录
step1:建目录: cd /root mkdir PhantomJS step2:下载phantomjs安装包 可以直接进网址下载到本地后,再传到linux路径,例如phantomjs-1.9.7- ...
- 多项式对数函数 - NTT
#include <bits/stdc++.h> using namespace std; #define int long long const int N=4000005; // 4 ...
- [LGR-054]洛谷10月月赛II
浏览器 结论popcnt(x^y)和popcnt(x)+popcnt(y)的奇偶性相同. 然后就是popcnt为奇数的乘为偶数的.预处理一下\(2^{16}\)次方以内的popcnt,直接\(O(1) ...
- VTK坐标系统及视图分割
计算机图像学里广泛应用的坐标系统有四种,分别是:模型坐标系统(model),世界坐标系统(world),视图坐标系统(view)和显示坐标系统(display). 模型坐标系统就是定义模型时所用的坐标 ...
- rest_framework:版本控制
一.作用: 用于版本的控制,区分不同的功能,对于一些新增功能的添加更新就会在新的版本中体现,有点类似于,新版本就是软件发布的新版本,和老版本相比新增或者修改了一些功能 二.内置的版本控制类: from ...
- 【算法学习记录-排序题】【PAT A1025】PAT Ranking
Programming Ability Test (PAT) is organized by the College of Computer Science and Technology of Zhe ...
- H5与native 普及
H5与native 普及: H5是基于web,native基于客户端native是使用原生系统内核的,相当于直接在系统上操作.,是我们传统意义上的软件,更加稳定.但是H5的APP先得调用系统的浏览器内 ...
- 网络流EK算法模板
\(EK\)算法的思想就是每一次找一条增广路进行增广. 注意几个点: 存图时\(head\)数组要设为\(-1\). 存图的代码是这样的: inline void add(int u, int v, ...
- C++-有感
今日在图书馆待了差不多一天,我都忘了我吃饭了没,拿着看视频学习,没啦,主要还是看书,突然感觉有点写不动了. 明天开始不带电脑了,准备把数据结构书重新过一遍,算了,还是不用C++写了,感觉C++居然做题 ...
- AM335X的应用程序自启动流程以及U盘更新应用程序记录
在AM335X的SD卡更新系统学习记录中最后更新完系统后,以后运行应用程序都会从EMMC中取出Linux系统运行.接着介绍Linux系统是怎么自己启动我们编写的应用程序的. 1.在AM335X的SD卡 ...