cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A132836 Largest integer terms forming a self-convolution cube-root of a sequence (A132835) such that: A132835(n) <= 3*A132835(n-1) for n>0 with A132835(0)=1.

Original entry on oeis.org

1, 1, 2, 4, 11, 29, 77, 211, 582, 1618, 4539, 12805, 36306, 103400, 295576, 847661, 2437880, 7028919, 20310976, 58808175, 170577566, 495574655, 1441899589, 4200913967, 12254244406, 35786588014, 104618152761, 306135037294
Offset: 0

Views

Author

Paul D. Hanna, Sep 07 2007

Keywords

Crossrefs

Cf. A132836 (cube-root); A132831 (variant).

A132853 Number of sequences {c(i), i=0..n} that form the initial terms of a self-convolution cube of an integer sequence such that 0 < c(n) <= 3*c(n-1) for n>0 with c(0)=1.

Original entry on oeis.org

1, 1, 3, 18, 180, 4347, 245511, 33731424, 11850958449, 10823718435525, 26127739209077469, 169071160476526474689, 2962647736390311022542681, 141814999458311839862777779311, 18682218330844513414826192858258922
Offset: 0

Views

Author

Paul D. Hanna, Sep 19 2007, Oct 06 2007

Keywords

Comments

Equals the number of nodes at generation n in the 3-convoluted tree. The minimal path in the 3-convoluted tree is A083953 and the maximal path is A132835. The 3-convoluted tree is defined as follows: tree of all finite sequences {c(k), k=0..n} that form the initial terms of a self-convolution cube of some integer sequence such that 0 < c(n) <= 3*c(n-1) for n>0 with a(0)=1.

Examples

			a(n) counts the nodes in generation n of the following tree.
Generations 0..4 of the 3-convoluted tree are as follows;
The path from the root is shown, with child nodes enclosed in [].
GEN.0: [1];
GEN.1: 1->[3];
GEN.2: 1-3->[3,6,9];
GEN.3:
1-3-3->[1,4,7]
1-3-6->[1,4,7,10,13,16]
1-3-9->[1,4,7,10,13,16,19,22,25];
GEN.4:
1-3-3-1->[3]
1-3-3-4->[3,6,9,12]
1-3-3-7->[3,6,9,12,15,18,21]
1-3-6-1->[3]
1-3-6-4->[3,6,9,12]
1-3-6-7->[3,6,9,12,15,18,21]
1-3-6-10->[3,6,9,12,15,18,21,24,27,30]
1-3-6-13->[3,6,9,12,15,18,21,24,27,30,33,36,39]
1-3-6-16->[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48]
1-3-9-1->[3]
1-3-9-4->[3,6,9,12]
1-3-9-7->[3,6,9,12,15,18,21]
1-3-9-10->[3,6,9,12,15,18,21,24,27,30]
1-3-9-13->[3,6,9,12,15,18,21,24,27,30,33,36,39]
1-3-9-16->[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48]
1-3-9-19->[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57]
1-3-9-22->[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66 ]
1-3-9-25->[3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75].
Each path in the tree from the root node forms the initial terms of
a self-convolution cube of a sequence of integer terms.
		

Crossrefs

Extensions

Extended by Martin Fuller, Sep 24 2007.

A132837 Largest terms a(n) forming a self-convolution 4th power of an integer sequence (A132838) such that: a(n) <= 4*a(n-1) for n>0 with a(0)=1.

Original entry on oeis.org

1, 4, 14, 56, 221, 884, 3534, 14136, 56542, 226168, 904672, 3618688, 14474751, 57899004, 231596014, 926384056, 3705536222, 14822144888, 59288579552, 237154318208, 948617272832, 3794469091328, 15177876365312, 60711505461248
Offset: 0

Views

Author

Paul D. Hanna, Sep 10 2007

Keywords

Crossrefs

Cf. A132838 (fourth-root); variants: A132831, A132835, A132839.

Programs

  • PARI
    {a(n)=local(A,t,r=1);A=if(n==0,[1],vector(n,j,a(j-1)));if(n==0,r=1,t=a(n-1); if(denominator(Vec(Ser(concat(A,4*t))^(1/4))[n+1])==1,r=4*t, if(denominator(Vec(Ser(concat(A,4*t-1))^(1/4))[n+1])==1,r=4*t-1, if(denominator(Vec(Ser(concat(A,4*t-2))^(1/4))[n+1])==1,r=4*t-2,r=4*t-3))));r}

A132839 Largest terms a(n) forming a self-convolution 5th power of an integer sequence (A132840) such that: a(n) <= 5*a(n-1) for n>0 with a(0)=1.

Original entry on oeis.org

1, 5, 25, 125, 625, 3121, 15605, 78025, 390125, 1950625, 9753123, 48765615, 243828075, 1219140375, 6095701875, 30478509371, 152392546855, 761962734275, 3809813671375, 19049068356875, 95245341784374, 476226708921870
Offset: 0

Views

Author

Paul D. Hanna, Sep 10 2007

Keywords

Crossrefs

Cf. A132840 (fifth-root); variants: A132831, A132835, A132837.

Programs

  • PARI
    {a(n)=local(A,t,r=1);A=if(n==0,[1],vector(n,j,a(j-1)));if(n==0,r=1,t=a(n-1); if(denominator(Vec(Ser(concat(A,5*t))^(1/5))[n+1])==1,r=5*t, if(denominator(Vec(Ser(concat(A,5*t-1))^(1/5))[n+1])==1,r=5*t-1, if(denominator(Vec(Ser(concat(A,5*t-2))^(1/5))[n+1])==1,r=5*t-2, if(denominator(Vec(Ser(concat(A,5*t-3))^(1/5))[n+1])==1,r=5*t-3,r=5*t-4)))));r}
Showing 1-4 of 4 results.