I have been playing with the recurrence relation
such that .
I have found a few interesting difference forms for it but no closed form formula. Can anyone find a nice closed form formula, generating function or interpretation for what this might count.
All thoughts appreciated and welcome :)
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
If you want to find the closed-form formula, find its generating function. To start you off, you will have
∑n≥2pnxn=∑n≥2npn−1xn+∑n≥2pn−2xn.
If we define
f(x)≡∑n≥0pnxn,
then you will have that
n≥2∑pnxn=f(x)−(p0+p1x)=f(x)−x,
n≥2∑npn−1xn=xn≥2∑npn−1xn−1=x(n≥2∑(n−1)pn−1xn−1+n≥2∑pn−1xn−1)=x(xn≥2∑(n−1)pn−1xn−2+f(x))=x2f′(x)+xf(x)
and
n≥2∑pn−2xn=x2n≥2∑pn−2xn−2=x2f(x).
So, you end up with the equation
f(x)−x=x2f′(x)+xf(x)+x2f(x),
which simplifies to
x2f′(x)+(x2+x−1)f(x)=−x.
This is a linear ODE which I will let you solve from here. This is one half of the problem; to recover the sequence, you will need to be a little crafty.
Whenever you're investigating a sequence, it's not a bad idea to check the OEIS. This is entry A001053. There doesn't seem to be too much information.
Log in to reply
Thanks Jon, this is a nice idea :) I did have a quick look and agreed that there was not a lot of info! I will be having a look at bessel funtions soon to try get more intuition on the problem :)