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-5 of 5 results.

A195909 First numerator and then denominator in a fraction expansion of log(2) - Pi/8.

Original entry on oeis.org

1, 2, -1, 3, 1, 12, 1, 30, -1, 35, 1, 56, 1, 90, -1, 99, 1, 132, 1, 182, -1, 195, 1, 240, 1, 306, -1, 323, 1, 380, 1, 462, -1, 483, 1, 552, 1, 650, -1, 675, 1, 756, 1, 870, -1, 899, 1, 992, 1, 1122, -1, 1155, 1
Offset: 1

Views

Author

Mohammad K. Azarian, Sep 26 2011

Keywords

Examples

			1/2 - 1/3 + 1/12 + 1/30 - 1/35 + 1/56 + 1/90 - 1/99 + 1/132 + 1/182 - 1/195 + 1/240 + ... = [(1 - 1/2) + (1/3 - 1/4) + (1/5 - 1/6) + (1/7 - 1/8) + (1/9 - 1/10) + (1/11 - 1/12) + ... ] - (1/2)*[(1 - 1/3) + (1/5 - 1/7) + (1/9 - 1/11) + (1/13 - 1/15) + ... ] = log(2) - Pi/8.
		

References

  • Mohammad K. Azarian, Problem 1218, Pi Mu Epsilon Journal, Vol. 13, No. 2, Spring 2010, p. 116. Solution published in Vol. 13, No. 3, Fall 2010, pp. 183-185.
  • Granino A. Korn and Theresa M. Korn, Mathematical Handbook for Scientists and Engineers, McGraw-Hill Book Company, New York (1968).

Crossrefs

Formula

log(2) - Pi/8 = Sum_{n>=1} (-1)^(n+1)*(1/n) + (-1/2)*Sum_{n>=0} (-1)^n*(1/(2*n+1)).
Empirical g.f.: x*(1+2*x-2*x^2+x^3+2*x^4+9*x^5-2*x^6+14*x^7+2*x^8+3*x^9-2*x^10+3*x^11+x^12) / ((1-x)^3*(1+x)^3*(1-x+x^2)^2*(1+x+x^2)^2). - Colin Barker, Dec 17 2015

A195913 The denominator in a fraction expansion of log(2)-Pi/8.

Original entry on oeis.org

2, 3, 12, 30, 35, 56, 90, 99, 132, 182, 195, 240, 306, 323, 380, 462, 483, 552, 650, 675, 756, 870, 899, 992, 1122, 1155, 1260, 1406, 1443, 1560, 1722, 1763, 1892, 2070, 2115, 2256, 2450, 2499, 2652, 2862, 2915
Offset: 1

Views

Author

Mohammad K. Azarian, Sep 25 2011

Keywords

Comments

The minus sign in front of a fraction is considered the sign of the numerator and hence the sign of the fraction does not appear in this sequence.

Examples

			1/2 - 1/3 + 1/12 + 1/30 - 1/35 + 1/56 + 1/90 - 1/99 + 1/132 + 1/182 - 1/195 + 1/240 + ... = [(1 - 1/2) + (1/3 - 1/4) + (1/5 - 1/6) + (1/7 - 1/8) + (1/9 - 1/10) + (1/11 - 1/12) + ...] - (1/2)*[(1 - 1/3) + (1/5 - 1/7) + (1/9 - 1/11) + (1/13 - 1/15) + ... ] = log(2) - Pi/8.
		

References

  • Granino A. Korn and Theresa M. Korn, Mathematical Handbook for Scientists and Engineers, McGraw-Hill Book Company, New York (1968).

Crossrefs

Formula

log(2) - Pi/8 = Sum_{n>=1} (-1)^(n+1)*(1/n) + (-1/2)*Sum_{n>=0} (-1)^n*(1/(2*n+1)).
Empirical g.f.: x*(2+x+9*x^2+14*x^3+3*x^4+3*x^5) / ((1-x)^3*(1+x+x^2)^2). - Colin Barker, Dec 17 2015
From Bernard Schott, Aug 11 2019: (Start)
k >= 1, a(3*k) = (4*k-1) * 4*k,
k >= 0, a(3*k+1) = (4*k+1) * (4*k+2),
k >= 0, a(3*k+2) = (4*k+1) * (4*k+3).
The even terms a(3*k) and a(3*k+1) come from log(2) and the odd terms a(3*k+2) come from - Pi/8. (End)

A195895 E.g.f. satisfies: A(x) = exp(-1) * Sum_{n>=0} exp(x*A(x)^n)/n!.

Original entry on oeis.org

1, 1, 3, 19, 201, 2996, 57613, 1357987, 37921761, 1224420067, 44884358461, 1841710133330, 83634349451425, 4164470926316377, 225629247763909837, 13214729079087267931, 831997985912417838017, 56038514134260089791916, 4020820086886704204188797
Offset: 0

Views

Author

Paul D. Hanna, Sep 24 2011

Keywords

Examples

			E.g.f.: A(x) = 1 + x + 3*x^2/2! + 19*x^3/3! + 201*x^4/4! + 2996*x^5/5! +...
where
A(x) = exp(-1)*(exp(x) + exp(x*A(x)) + exp(x*A(x)^2)/2! + exp(x*A(x)^3)/3! +...).
		

Crossrefs

Cf. A195947.

Programs

  • PARI
    {a(n)=local(A=1+x);for(i=1,n,A=exp(-1)*sum(m=0,2*n+10,exp(x*A^m+x*O(x^n))/m!));round(n!*polcoeff(A,n))}
    
  • PARI
    {a(n)=local(A=1+x, X=x+x*O(x^n)); for(i=1, n, A=1+sum(m=1,n,exp(A^m-1)*X^m/m!)); n!*polcoeff(A, n)}

Formula

E.g.f. satisfies: A(x) = Sum_{n>=0} exp(A(x)^n - 1)*x^n/n!. [From Paul D. Hanna, Sep 27 2011]

A196958 E.g.f. satisfies: A(x) = Sum_{n>=0} 1/n! * Sum_{k=0..n} (-1)^(n-k) * C(n,k) * (1 + x/A(x)^k)^k.

Original entry on oeis.org

1, 1, -3, 22, -227, 2571, -19157, -550675, 47287609, -2474401796, 113036728791, -4672627704315, 162246902824213, -2986895872839215, -218043087879704765, 36487218926663045686, -3474880515053581779215, 262843589524537015935667, -15730145172651453469201745, 541394288749029235105442821
Offset: 0

Views

Author

Paul D. Hanna, Oct 08 2011

Keywords

Examples

			 E.g.f.: A(x) = 1 + x - 3*x^2/2! + 22*x^3/3! - 227*x^4/4! + 2571*x^5/5! +...
where:
A(x) = 1 + 1/A(x)*exp(1/A(x) - 1)*x + 1/A(x)^4*exp(1/A(x)^2 - 1)*x^2/2! + 1/A(x)^9*exp(1/A(x)^3 - 1)*x^3/3! + 1/A(x)^16*exp(1/A(x)^4 - 1)*x^4/4! +...
Also, e.g.f. A = A(x) satisfies:
A(x) = 1 - (1 - (1+x/A)) + 1/2!*(1 - 2*(1+x/A) + (1+x/A^2)^2) -
1/3!*(1 - 3*(1+x/A) + 3*(1+x/A^2)^2 - (1+x/A^3)^3) +
1/4!*(1 - 4*(1+x/A) + 6*(1+x/A^2)^2 - 4*(1+x/A^3)^3 + (1+x/A^4)^4) -
1/5!*(1 - 5*(1+x/A) + 10*(1+x/A^2)^2 - 10*(1+x/A^3)^3 + 5*(1+x/A^4)^4 - (1+x/A^5)^5) +-...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x, X=x+x*O(x^n)); for(i=1, n, A=1+sum(m=1, n, 1/m!*sum(k=0, m, binomial(m, k)*(-1)^(m-k)*(1+X*A^(-k))^k))); n!*polcoeff(A, n)}

Formula

E.g.f. satisfies: A(x) = Sum_{n>=0} A(x)^(-n^2) * exp(1/A(x)^n - 1)*x^n/n!.

A196959 E.g.f. satisfies: A(x) = Sum_{n>=0} 1/n! * Sum_{k=0..n} (-1)^(n-k) * C(n,k) * (1 + x*A(x)^(2*k))^k.

Original entry on oeis.org

1, 1, 9, 193, 6721, 326001, 20316937, 1548374129, 139576777921, 14530808439073, 1715928199384521, 226652340142349793, 33113449456084235905, 5302086923264289694225, 923349950199153833740105, 173761214485224395469845521, 35139709415689684107278235265
Offset: 0

Views

Author

Paul D. Hanna, Oct 08 2011

Keywords

Examples

			 E.g.f.: A(x) = 1 + x + 9*x^2/2! + 193*x^3/3! + 6721*x^4/4! + 326001*x^5/5! +...
where:
A(x) = 1 + A(x)^2*exp(A(x)^2 - 1)*x + A(x)^8*exp(A(x)^4 - 1)*x^2/2! + A(x)^18*exp(A(x)^6 - 1)*x^3/3! + A(x)^32*exp(A(x)^8 - 1)*x^4/4! +...
Also, e.g.f. A = A(x) satisfies:
A(x) = 1 - (1 - (1+x*A^2)) + 1/2!*(1 - 2*(1+x*A^2) + (1+x*A^4)^2) -
1/3!*(1 - 3*(1+x*A^2) + 3*(1+x*A^4)^2 - (1+x*A^6)^3) +
1/4!*(1 - 4*(1+x*A^2) + 6*(1+x*A^4)^2 - 4*(1+x*A^6)^3 + (1+x*A^8)^4) -
1/5!*(1 - 5*(1+x*A^2) + 10*(1+x*A^4)^2 - 10*(1+x*A^6)^3 + 5*(1+x*A^8)^4 - (1+x*A^10)^5) +-...
		

Crossrefs

Programs

  • PARI
    {a(n)=local(A=1+x, X=x+x*O(x^n)); for(i=1, n, A=1+sum(m=1, n, 1/m!*sum(k=0, m, binomial(m, k)*(-1)^(m-k)*(1+X*A^(2*k))^k))); n!*polcoeff(A, n)}

Formula

E.g.f. satisfies: A(x) = Sum_{n>=0} A(x)^(2*n^2) * exp(A(x)^(2*n) - 1)*x^n/n!.
Showing 1-5 of 5 results.