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.

User: Jimmy Zotos

Jimmy Zotos's wiki page.

Jimmy Zotos has authored 8 sequences.

A227847 Number of tuples (x_1, x_2, ..., x_n) with 1 <= x_1 <= x_2 <= ... <= x_n such that Sum_{i=1..n} x_i^3 = (Sum_{i=1..n} x_i)^2 and Sum_{i=1..n-1} x_i^3 + (x_n-1)^3 + (x_n+1)^3 = (Sum_{i=1..n-1} x_i + 2x_n)^2.

Original entry on oeis.org

0, 1, 1, 1, 2, 2, 2, 6, 10, 31, 77, 206, 568, 1704, 5037, 15554
Offset: 1

Author

Jimmy Zotos, Aug 01 2013

Keywords

Comments

An n-tuple meeting the first condition is called an n-SCESS ("sum of cubes equals square of sum").
In other words, a(n) is the number of tuples (x_1, x_2, ..., x_n) satisfying SCESS such that (x_1, x_2, ..., x_{n-1}, x_n - 1, x_n + 1) also satisfies SCESS. - Max Alekseyev, Mar 04 2025
x_1 + x_2 + ... + x_{n-1} = A152948(x_n). - Balarka Sen, Aug 01 2013

Examples

			a(3) = 1 since the only 3-SCESS is (1, 2, 3) for which the corresponding ordered tuple (1, 2, 2, 4) satisfy the SCESS property. (See Mason et al.)
a(5) = 2 since the only 5-SCESS are (1, 2, 2, 3, 5) and (3, 3, 3, 3, 6) for which the corresponding ordered tuples (1, 2, 2, 3, 4, 6) and (3, 3, 3, 3, 5, 7) satisfy the SCESS property.
a(8) = 6 since the only 8-SCESS are (1, 1, 2, 4, 5, 5, 5, 8), (1, 2, 2, 3, 4, 5, 6, 8), (2, 2, 4, 4, 6, 6, 6, 9), (2, 6, 6, 6, 6, 6, 6, 10), (3, 3, 3, 3, 5, 6, 7, 9) and (3, 5, 5, 5, 6, 7, 7, 10) for which the corresponding ordered tuples (1, 1, 2, 4, 5, 5, 5, 7, 9), (1, 2, 2, 3, 4, 5, 6, 7, 9), (2, 2, 4, 4, 6, 6, 6, 8, 10), (2, 6, 6, 6, 6, 6, 6, 9, 11), (3, 3, 3, 3, 5, 6, 7, 8, 10) and (3, 5, 5, 5, 6, 7, 7, 9, 11) satisfy the SCESS property.
		

Crossrefs

Programs

  • PARI
    a(n)=my(v=vector(n, i, 1), N=n^(4/3), k); while(v[#v]N, for(i=2, N, if(v[i]Balarka Sen, Aug 01 2013 */

Formula

A001055(n) <= a(n) <= A158649(n). - Balarka Sen, Aug 01 2013

Extensions

a(11)-a(15) from Balarka Sen, Aug 01 2013
a(16) from Balarka Sen, Aug 11 2013
Definition corrected by Max Alekseyev, Mar 04 2025

A225808 Values (Sum_{1<=i<=k} x_i)^2 = Sum_{1<=i<=k} x_i^3 for 1 <= x_1 <= x_2 <=...<= x_k ordered lexicographically according to (x1, x2,..., xk).

Original entry on oeis.org

1, 9, 16, 36, 81, 81, 100, 144, 256, 169, 225, 324, 361, 625, 144, 256, 324, 441, 324, 361, 441, 625, 256, 576, 729, 784, 576, 729, 900, 961, 1089, 1296, 484, 625, 784, 900, 484, 441, 576, 729, 784, 900, 1089, 1089, 1156, 1369, 625, 784, 729, 900, 1089, 1369, 1296, 1600, 900, 961, 1089
Offset: 1

Author

Keywords

Comments

a(n) <= k^4 where k is the size of the ordered tuple (x_1, x_2,..., x_k).
This sequence is closed under multiplication, that is, if m and n are in this sequence, so is m*n.

Examples

			1;
9, 16;
36, 81;
81, 100, 144, 256;
169, 225, 324, 361, 625;
144, 256, 324, 441, 324, 361, 441, 625, 256, 576, 729, 784, 576, 729, 900, 961, 1089, 1296;
484, 625, 784, 900, 484, 441, 576, 729, 784, 900, 1089, 1089, 1156, 1369, 625, 784, 729, 900, 1089, 1369, 1296, 1600, 900, 961, 1089, 1600, 1296, 1600, 2025, 2401;
		

Crossrefs

Programs

  • Mathematica
    row[n_] := Reap[Module[{v, m}, v = Table[1, {n}]; m = n^(4/3); While[ v[[-1]] < m, v[[1]]++; If[v[[1]] > m, For[i = 2, i <= m, i++, If[v[[i]] < m, v[[i]]++; For[j = 1, j <= i - 1, j++, v[[j]] = v[[i]]]; Break[]]]]; If[Total[v^3] == Total[v]^2, Sow[Total[v]^2]]]]][[2, 1]];
    Array[row, 7] // Flatten (* Jean-François Alcover, Feb 23 2019, from PARI *)
  • PARI
    row(n)=my(v=vector(n,i,1),N=n^(4/3)); while(v[#v]N,for(i=2, N,if(v[i]
    				

A225819 Consider the set of n-tuples such that the sum of cubes of the elements is equal to square of their sum; sequence gives largest element in all such tuples.

Original entry on oeis.org

1, 2, 3, 4, 6, 7, 9, 10, 12, 14, 16, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 39, 42, 44, 46, 48, 51, 53, 55, 58, 60, 62, 65, 67, 70, 72, 75, 77, 80, 82, 85, 88, 90, 93, 96, 98, 101, 104, 106, 109, 112, 115, 117, 120, 123, 126, 129, 132, 134, 137, 140, 143, 146, 149, 152, 155
Offset: 1

Author

Keywords

Comments

Conjecture [Sen]: lim inf log_n a(n) >= 5/4.

Examples

			Call an n-multiset with the sum of cubes of the elements equal to square of their sum an n-SCESS.
a(6) = 7 since the only 6-SCESS with the largest element >= 7 are (2, 4, 4, 5, 5, 7), (3, 3, 3, 3, 5, 7), (3, 4, 5, 5, 6, 7), (3, 5, 5, 5, 6, 7) and (4, 5, 5, 6, 6, 7) and none have an element larger than 7.
a(7) = 9 since the only 7-SCESS with the largest element >= 9 are (4, 4, 4, 5, 5, 5, 9), (4, 5, 5, 5, 6, 6, 9) and (6, 6, 6, 6, 6, 6, 9) and none have an element larger than 9.
a(8) = 10 since the only 8-SCESS with the largest element >= 10 are (2, 5, 5, 5, 5, 5, 6, 10), (2, 6, 6, 6, 6, 6, 6, 10), (3, 4, 5, 5, 5, 6, 7, 10), (3, 4, 5, 5, 6, 6, 7, 10), (3, 5, 5, 5, 6, 7, 7, 10), (3, 6, 6, 6, 7, 7, 7, 10), (4, 4, 4, 4, 4, 4, 6, 10), (4, 4, 4, 4, 5, 5, 7, 10), (4, 5, 5, 6, 6, 7, 8, 10), (5, 5, 5, 7, 7, 7, 8, 10) and (6, 6, 6, 6, 6, 6, 9, 10) and none have an element larger than 10.
		

Crossrefs

Programs

  • PARI
    a(n)=my(v=vector(n, i, 1), N=n^(4/3), m=n); while(v[#v]N, for(i=2, N, if(v[i]
    				

Formula

n <= a(n) <= n^(4/3), see A158649.

A225572 Continued fraction expansion of Pi/(4*e) + e/(3*Pi).

Original entry on oeis.org

0, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 2, 2, 5, 3, 1, 2, 2, 1, 1, 24, 1, 2, 2, 9, 78, 1, 94, 5, 1, 27, 2, 1, 1, 2, 1, 4, 2, 2, 2, 20, 1, 4, 1, 1, 5, 23, 43, 1, 9, 1, 3, 1, 3, 1, 2, 1, 2, 4, 1, 1, 3, 8, 32, 1, 7, 1
Offset: 0

Author

Balarka Sen, May 11 2013, based on an idea from Jimmy Zotos

Keywords

Comments

The first five terms match with the continued fraction of the Euler-Mascheroni constant. See analogous comment in A225155.

Crossrefs

Cf. A225155.

Programs

  • Mathematica
    ContinuedFraction[Pi/(4E)+E/(3Pi),100] (* Harvey P. Dale, Oct 22 2023 *)
  • PARI
    default(realprecision, 300); contfrac(Pi/(4*exp(1))+exp(1)/(3*Pi))

A225155 Decimal expansion of Pi/(4*e) + e/(3*Pi).

Original entry on oeis.org

5, 7, 7, 3, 5, 0, 4, 9, 7, 2, 5, 8, 4, 8, 5, 4, 5, 8, 5, 5, 0, 1, 1, 4, 8, 9, 2, 3, 7, 6, 8, 7, 0, 6, 1, 3, 9, 2, 3, 1, 2, 7, 6, 3, 0, 4, 2, 7, 2, 7, 5, 8, 0, 1, 6, 0, 9, 7, 0, 3, 3, 9, 6, 8, 1, 4, 5, 0, 3, 8, 3, 9, 4, 8, 3, 7, 8, 8, 2, 5, 4, 4, 0, 4, 0, 2, 1, 9, 9, 6, 0, 6, 4, 3, 1, 3, 2, 2, 8, 7, 9, 6
Offset: 0

Author

Jimmy Zotos, May 01 2013

Keywords

Comments

Approximates Euler Mascheroni constant giving 3 correct decimal places.
The constant is not known to be transcendental, or even irrational. - Balarka Sen, May 06 2013

Examples

			0.5773504972584854585501148923768706139231...
		

Crossrefs

Cf. A000796, A001113, A061360, A086056, A001620, A225572 (continued fraction).

Programs

  • Magma
    R:= RealField(100); (3*Pi(R)^2 + 4*Exp(2))/(12*Pi(R)*Exp(1)); // G. C. Greubel, Aug 30 2018
  • Mathematica
    RealDigits[(3*Pi^2 + 4*E^2)/(12*E*Pi), 10, 100][[1]] (* G. C. Greubel, Aug 30 2018 *)
  • PARI
    default(realprecision, 1020); x=10*Pi/exp(1)/4+10*exp(1)/Pi/3; d=0; for (n=0, 1000, d=floor(x); x=(x-d)*10; print1(d", ")) \\
    

Extensions

More terms from Balarka Sen, May 02 2013

A211878 Decimal expansion of positive constant C such that 1 = Sum_{k>=1} 1/C^(2^k).

Original entry on oeis.org

1, 3, 2, 9, 0, 5, 9, 1, 0, 8, 7, 4, 9, 5, 5, 9, 5, 6, 4, 6, 0, 9, 9, 1, 6, 8, 2, 6, 7, 9, 2, 4, 3, 6, 2, 5, 1, 9, 4, 9, 7, 7, 6, 5, 9, 3, 8, 8, 4, 1, 8, 2, 8, 7, 8, 7, 3, 4, 2, 2, 9, 8, 5, 0, 2, 7, 3, 0, 4, 0, 8, 5, 4, 4, 9, 2, 0, 4, 4, 7, 6, 3, 4, 8, 0, 3, 8, 3, 8, 2, 7, 7, 9, 7, 8, 1, 9, 1, 2, 2, 9, 6, 8, 0, 1, 9, 3, 2, 3, 8, 6, 6
Offset: 1

Author

Jimmy Zotos and Balarka Sen, Feb 13 2013

Keywords

Examples

			C = 1.3290591087495595646...
		

Programs

  • Maple
    Digits:= 120:
    s:= convert(fsolve(sum(1/C^(2^k), k=1..infinity)=1, C=1)/10, string):
    seq(parse(s[n+1]), n=1..112);
  • Mathematica
    digits = 112; f[x_?NumericQ] := NSum[1/x^(2^k), {k, 1, Infinity}, WorkingPrecision -> digits]; x /. FindRoot[f[x] == 1, {x, 3/2, 1, 2}, WorkingPrecision -> digits] // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Feb 20 2014 *)

Extensions

More terms from Alois P. Heinz, Feb 13 2013

A211879 Decimal expansion of constant C such that 1 = Sum_{k>=1} 1/C^(k^3).

Original entry on oeis.org

1, 2, 3, 3, 8, 8, 8, 1, 4, 0, 3, 3, 7, 2, 7, 4, 1, 8, 8, 7, 5, 3, 5, 4, 7, 9, 2, 7, 3, 0, 8, 8, 6, 4, 1, 1, 5, 5, 0, 4, 7, 8, 2, 1, 4, 0, 1, 0, 9, 1, 2, 4, 2, 8, 9, 3, 1, 7, 6, 7, 7, 4, 8, 4, 5, 0, 7, 9, 9, 9, 0, 5, 6, 1, 9, 7, 8, 0, 3, 7, 4, 5, 5, 2, 7, 0, 9, 4, 0, 7, 6, 3, 9, 5, 5, 0, 8, 0, 1, 0, 8, 5, 8, 5, 0, 8, 6, 5, 6, 3, 7, 0, 1, 2, 5, 4
Offset: 1

Author

Balarka Sen and Jimmy Zotos, Feb 13 2013

Keywords

Examples

			C = 1.2338881403372741887535479273...
		

Crossrefs

Programs

  • Maple
    Digits:= 120:
    s:= convert(fsolve(sum(1/C^(k^3), k=1..infinity)=1, C=2)/10, string):
    seq(parse(s[n+1]), n=1..116);  # Alois P. Heinz, Feb 13 2013
  • Mathematica
    digits = 116; f[x_?NumericQ] := NSum[1/x^(k^3), {k, 1, Infinity}, WorkingPrecision -> digits]; x /. FindRoot[f[x] == 1, {x, 3/2, 1, 2}, WorkingPrecision -> digits] // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Feb 20 2014 *)

Extensions

More terms from Alois P. Heinz, Feb 13 2013

A215267 Decimal expansion of 90/Pi^4.

Original entry on oeis.org

9, 2, 3, 9, 3, 8, 4, 0, 2, 9, 2, 1, 5, 9, 0, 1, 6, 7, 0, 2, 3, 7, 5, 0, 4, 9, 4, 0, 4, 0, 6, 8, 2, 4, 7, 2, 7, 6, 4, 5, 0, 2, 1, 6, 6, 8, 2, 7, 4, 4, 3, 6, 4, 4, 6, 3, 5, 1, 2, 3, 1, 9, 2, 4, 7, 7, 6, 2, 9, 6, 4, 0, 7, 9, 9, 6, 7, 2, 8, 2, 2, 4, 1, 6, 5, 1, 4, 3, 7, 3, 6, 5, 7, 6, 1, 4, 4, 1, 5
Offset: 0

Author

Jimmy Zotos, Aug 07 2012

Keywords

Comments

Decimal expansion of 1/zeta(4), the inverse of A013662. This is the probability that 4 randomly chosen natural numbers are relatively prime.
Also the asymptotic probability that a random integer is 4-free. See equivalent comments in A088453, A059956. - Balarka Sen, Aug 08 2012
The probability that the greatest common divisor of two numbers selected at random is squarefree (Christopher, 1956). - Amiram Eldar, May 23 2020

Examples

			0.92393840292159016702375049404068247276450216682744364463512319...
		

References

  • T. M. Apostol, Introduction to Analytic Number Theory, Springer-Verlag, 1976, page 231.

Crossrefs

Cf. A013662, A046100 (4-free numbers), A059956 (1/zeta(2)).

Programs

Formula

Reciprocal of A013662.
1/zeta(4) = 90/Pi^4 = Product_{k>=1} (1 - 1/prime(k)^4) = Sum_{n>=1} mu(n)/n^4, a Dirichlet series for the Möbius function mu. See the examples in Apostol, here for s = 4. - Wolfdieter Lang, Aug 07 2019