Jamie Morken on Thu, 07 Nov 2019 08:50:05 +0100
|
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: Pari programs on oeis, accessing internal calculatios
|
- To: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
- Subject: Re: Pari programs on oeis, accessing internal calculatios
- From: Jamie Morken <jmorken@shaw.ca>
- Date: Thu, 7 Nov 2019 00:49:44 -0700 (MST)
- Cc: pari-dev@pari.math.u-bordeaux.fr
- Delivery-date: Thu, 07 Nov 2019 08:50:05 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=shaw.ca; s=s20180605; t=1573113000; bh=rXLVxFf8uDpvN5JIJPk6yVIKAJJ6BlVc6PecHNKek38=; h=Date:From:To:Cc:In-Reply-To:References:Subject; b=kQs2YevIc92w0e0ga4aamhbWzZrJARAdsH+lWk/dD/CV/LBj/bgr+Ce4f8dhfpeAv AMMP0siiQ342BbGq2X86V+wNORdWqQfR64igFaaBr8kfHd0qwHPk2Gbs/7UBQYK54r KTdGe59gkFDWD/4VyIWIIlXOx7VV2VdJ1ff9gM0+P/DbKl/BNaKy/gSYpdd9+03lKh tbrI9eft30ilZlTF9j4ZSbBl8QdFzcslqTrEKJK3ZeS78co8ztFB/eiVKDJGUrJ8jR W/kgceKOWdwxzSUk1LEUUqmHFHMix1XOFfSfD2wqwGHa8L6JdKeUZeO424btRxVCco Eq2Y4srYwRvbQ==
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=shaw.ca; s=s20180605; t=1573113000; bh=rXLVxFf8uDpvN5JIJPk6yVIKAJJ6BlVc6PecHNKek38=; h=Date:From:To:Cc:In-Reply-To:References:Subject; b=kQs2YevIc92w0e0ga4aamhbWzZrJARAdsH+lWk/dD/CV/LBj/bgr+Ce4f8dhfpeAv AMMP0siiQ342BbGq2X86V+wNORdWqQfR64igFaaBr8kfHd0qwHPk2Gbs/7UBQYK54r KTdGe59gkFDWD/4VyIWIIlXOx7VV2VdJ1ff9gM0+P/DbKl/BNaKy/gSYpdd9+03lKh tbrI9eft30ilZlTF9j4ZSbBl8QdFzcslqTrEKJK3ZeS78co8ztFB/eiVKDJGUrJ8jR W/kgceKOWdwxzSUk1LEUUqmHFHMix1XOFfSfD2wqwGHa8L6JdKeUZeO424btRxVCco Eq2Y4srYwRvbQ==
- In-reply-to: <20191106230551.xn6xqxvqq3wbfy7p@yellowpig>
- References: <996538148.405939355.1572779174525.JavaMail.zimbra@shaw.ca> <20191103134526.2qsn3kd7e3dooapq@yellowpig> <1460342444.408220443.1572826078195.JavaMail.zimbra@shaw.ca> <20191106230551.xn6xqxvqq3wbfy7p@yellowpig>
- Thread-index: bT+qgpP8A8DtEbtDhO8Sx+Lgr2ThxA==
- Thread-topic: Pari programs on oeis, accessing internal calculatios
Hi,
>what if the program does a(n)=(n+1)!-n! instead ?
I think the equal length sequences would be:
n+1, (n+1)!, n!, (n+1)!-n!.
>Let's say a(n) = sum(k=0,n,binomial(n,k)^3)
That is a good example, the simplest equal length sequences might be:
sum(k=0,n,binomial(n,k)^3), sum(k=0,n,binomial(n,k)), it is a bit arbitrary
to decide how to construct the equal length sequences but whatever method
is easiest to implement would work as a proof of concept.
It is a statistical approach to find relationships between A numbers,
so the most straightforward and simple implementation might be good
enough.
cheers,
Jamie
----- Original Message -----
From: Bill Allombert <Bill.Allombert@math.u-bordeaux.fr>
To: pari-dev@pari.math.u-bordeaux.fr
Sent: Wed, 06 Nov 2019 16:05:51 -0700 (MST)
Subject: Re: Pari programs on oeis, accessing internal calculatios
On Sun, Nov 03, 2019 at 05:07:58PM -0700, Jamie Morken wrote:
> Hi,For an example, since it is a general idea and not pari
> specific,for the sequence a(n)=n*n! for 1<n<10, there are three
> sequencesthat have equal lengths, ie, n, n!, n*n!
what if the program does a(n)=(n+1)!-n! instead ?
>For any pari program
> on OEIS, I was wondering if it could be possibleto break down the pari
> program to access the sequences that areused to create the overall
> a(n) sequence, including numerators anddenominator sequences of
> rational numbers.The main goal I was considering is to find as many
> sub-sequencesfor each oeis sequence as possible, and then build a
> graph data structurethat shows links between different oeis sequences,
> based on sharedsubsequences.
Let's say
a(n) = sum(k=0,n,binomial(n,k)^3)
what should that give ?
Cheers,
Bill