I encountered an interesting inequality that I'm not sure how to approach. Here $c$ is a positive constant. $$f(n+1) - f(n) = c f(n)\sum_{m=0}^n f(m)$$
I am not familiar with techniques to solve recursive equations, so I thought about a similar differential equation of it $$\frac{\partial f}{\partial x} = cf(x)\int_{z=0}^x f(z)dz.$$
I am quite new to the topic of differential equations though, so I might be missing some obvious techniques to solve this kind of equality. With my limited knowledge I tried applying Laplace transform or the Fourier transform to this equation to no avail, but the expression looks nice enough that I suspect there is an analytical solution to it. Any help to getting an analytical expression of this equation is much appreciated!
(This is coming from a real-world problem, so for now, any "nice" assumption on $f$ and the initial conditions and so on can be placed)
Your question comes in two variants. One is discrete. The other continuous.
The discrete variant asks about the equation $$ f(n+1) - f(n) = c f(n)\sum_{m=0}^n f(m). \tag{1} $$ A nicer version of this is to define $$ a_n := c f(n), \qquad b_n := 1 + \sum_{m=0}^n a_m. \tag{2} $$ Multiply equation $(1)$ by $\,c\,$ to get $$ a_{n+1} = a_n + a_n\sum_{m=0}^n a_m = a_n b_n = a_0\prod_{m=0}^n b_m \tag{3} $$ where the initial value $\,a_0\,$ is arbitrary. A simple example is if $\,a_0=1.\,$ This is OEIS sequence A001697. The growth rate is given as $\,a_n \sim c^{2^n}\,$ where $\,c \approx 1.335245.\,$ This is the typical growth rate with a different constant for each choice of $\,a_0.\,$ I don't think there is a known closed form.
The continuous variant asks about the related differential equation $$ \frac{\partial f}{\partial x} = cf(x)\int_{z=0}^x f(z)dz. \tag{4} $$ This is more interesting. The equation is equivalent to $$ \frac{\partial g}{\partial x} = c\int_{z=0}^x e^{g(z)}dz \;\; \text{ where } \;\; g(x) := \log(f(x)). $$ Assuming $\,g(x)\,$ has a power series, let $$ g(x) = a_0 + a_2\frac{x^2}{2!} + a_4\frac{x^4}{4!} + \cdots $$ where $\,c = a_2/e^{a_0}.\,$ For simplicity assume that $\,a_0=0, a_2=1.\,$ The solution of equation $(4)$ is $$ f(x) = \sec\left(\frac{x}{\sqrt{2}}\right)^2 = 1\frac{x^2}{2!} +4\frac{x^4}{4!} +34\frac{x^6}{6!} + \cdots $$ where the coefficients are OEIS sequence A002105.