Post Reply 
(49g 50g) Eta Quotients
09-02-2019, 02:07 PM (This post was last modified: 09-03-2019 11:37 PM by John Keith.)
Post: #1
(49g 50g) Eta Quotients
The following program computes sequences known as "multiplicative eta quotients". While this might sound obscure, they include several well-known sequences including the partition numbers and the Ramanujan tau sequence. In fact, this is an efficient program for computing the tau sequence, and is a generalization of the third program in post #1 of this thread.

The program requires the SUMDIVISORS program and the ListExt Library.

A full explanation can be found in this paper, and a complete list of sequences here.

Code:

\<< SWAP NEG \-> n m
  \<< n LSEQ 1 SUMDIVISORS { 1 } 1 n
    FOR k OVER 1 k SUB OVER REV * LSUM m * k / +
    NEXT NIP
  \>>
\>>

To use the program, level 2 should have an integer representing the denominator of the quotient. Level 1 should have an integer representing the number of terms that the program will return. For example, with 24 on level 2 and 50 on level 1, the program will return the first 50 Ramanujan tau numbers.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
(49g 50g) Eta Quotients - John Keith - 09-02-2019 02:07 PM



User(s) browsing this thread: 1 Guest(s)