Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
1

Fastest way to compute the coefficients of this generating function?

asked 1 year ago

res0001 gravatar image

updated 1 year ago

I need the first N coefficients of a certain generating function, with N around 30000. Using the following code, about 2.8 hrs were needed for N=10000, and 20 hrs for N=20000; unfortunately, it looks like N=30000 would require days:

N = 30000
R.<z> = PowerSeriesRing(ZZ, default_prec=N+1)
gf = (1-z)^2 * sum( z^n/(1 - 2*z + z^(n+1))^2 for n in range(N))
coeffs = gf.coefficients()

Question: Is there a better (faster!) way to do this in SageMath? E.g., some alternative to PowerSeriesRing, or some improvement to how I'm using it?

(Aside: The coefficients of this gf are theoretically expected to exhibit a certain phenomenon that doesn't show up until N is around 30000, and I'm just interested in confirming it.)

Preview: (hide)

Comments

It is possible to derive a formula for a particular coefficient of gf. However, getting them all unavoidably requires ~ N2 operations, which would be time-consuming.

Max Alekseyev gravatar imageMax Alekseyev ( 1 year ago )

1 Answer

Sort by » oldest newest most voted
3

answered 1 year ago

Max Alekseyev gravatar image

updated 1 year ago

Let ck be the coefficient of zk in sum( z^n/(1 - 2*z + z^(n+1))^2 for n in range(N)), then for 0<k<N we have ck=[zk]n1zn(12z+zn+1)2=[zk]n1m0zn+m(2m)(2+zn)m =kn=1knm=0mk(modn)(2m)(mknmn)(2)mknmn. Here is a corresponding code:

def c(k):
    return 1 if k==0 else sum(binomial(-2,m) * binomial(m,(t:=(k-m-n)//n)) * (-2)^(m-t) for n in range(1,k+1) for m in range(k%n,k-n+1,n))

Then, the coefficient of zk in (1-z)^2 * sum( z^n/(1 - 2*z + z^(n+1))^2 for n in range(N)) can be obtained simply as c(k) - 2*c(k-1) + c(k-2).

Preview: (hide)
link

Comments

Thanks for this answer! I hadn't realized one might find such a formula. Using your c(k) in a program to compute the final coefficients for a selected range of k-values, I find that it takes about 7 minutes to compute the ten of them for k=30000..30009. (I'll have to study the method you used to derive that formula. BTW, I'm sure you intended to write [zk].)

res0001 gravatar imageres0001 ( 1 year ago )

Yes, it was a typo. Now fixed.

Max Alekseyev gravatar imageMax Alekseyev ( 1 year ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 1 year ago

Seen: 377 times

Last updated: Jan 30 '24