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.

A353926 Product_{n>=1} (1 + a(n)*x^n) = 1 + Sum_{n>=1} mu(n)*x^n, where mu = A008683.

Original entry on oeis.org

1, -1, 0, 0, -1, 2, -4, 5, -7, 9, -10, 10, -5, 4, 19, -29, 70, -84, 138, -121, 174, -38, -70, 364, -797, 1423, -2048, 3001, -3479, 3324, -2080, -703, 7923, -15258, 32218, -46063, 68683, -73394, 82847, -45206, -24942, 191996, -422887, 780535, -1225608, 1713171, -2093347
Offset: 1

Views

Author

Ilya Gutkovskiy, May 11 2022

Keywords

Crossrefs

Programs

  • Mathematica
    A[m_, n_] := A[m, n] = Which[m == 1, MoebiusMu[n], m > n >= 1, 0, True, A[m - 1, n] - A[m - 1, m - 1] A[m, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 47]

A353924 Product_{n>=1} (1 + a(n)*x^n) = 1 + Sum_{n>=1} sigma(n)*x^n, where sigma = A000203.

Original entry on oeis.org

1, 3, 1, 6, -3, -6, -1, 40, 3, -50, -1, 73, 3, -315, 1, 1953, 1, -2117, 7, 5625, -13, -16116, 27, 33728, 29, -122648, 3, 351244, -25, -913057, -81, 5447169, 89, -7596153, 637, 22521844, -275, -61171056, -263, 177290760, -453, -487655426, -583, 1523295127, 8121, -4093188035
Offset: 1

Views

Author

Ilya Gutkovskiy, May 11 2022

Keywords

Crossrefs

Programs

  • Mathematica
    A[m_, n_] := A[m, n] = Which[m == 1, DivisorSigma[1, n], m > n >= 1, 0, True, A[m - 1, n] - A[m - 1, m - 1] A[m, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 46]

Formula

Product_{n>=1} (1 + a(n)*x^n) = 1 + Sum_{n>=1} x^n / (1 - x^n)^2.

A353925 Product_{n>=1} (1 + a(n)*x^n) = 1 + Sum_{n>=1} phi(n)*x^n, where phi = A000010.

Original entry on oeis.org

1, 1, 1, 1, 2, -2, 4, -3, 4, -6, 14, -18, 30, -32, 48, -73, 128, -182, 286, -394, 578, -804, 1386, -1936, 3172, -4298, 7102, -10202, 16414, -23798, 38056, -54997, 86658, -125180, 203396, -292650, 475536, -685314, 1100728, -1619952, 2601166, -3808952, 6114666, -9045400, 14352568
Offset: 1

Views

Author

Ilya Gutkovskiy, May 11 2022

Keywords

Crossrefs

Programs

  • Mathematica
    A[m_, n_] := A[m, n] = Which[m == 1, EulerPhi[n], m > n >= 1, 0, True, A[m - 1, n] - A[m - 1, m - 1] A[m, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 45]

A353945 Product_{n>=1} 1 / (1 - a(n)*x^n) = 1 + Sum_{n>=1} tau(n)*x^n, where tau = A000005.

Original entry on oeis.org

1, 1, 0, 0, -1, 1, -1, 0, 1, -2, 0, 1, -1, -2, 2, 1, -2, -2, 2, 0, -4, 0, 3, -3, 3, -3, -2, -1, 1, 8, -15, 0, 17, -14, -1, -3, 9, -5, -18, 23, -10, -18, 24, -17, -17, 18, 27, -48, -37, 72, 45, -119, -11, 148, -98, -28, 65, -57, 24, -95, 213, -363, -173, 704, -435
Offset: 1

Views

Author

Ilya Gutkovskiy, May 12 2022

Keywords

Crossrefs

Programs

  • Mathematica
    A[m_, n_] := A[m, n] = Which[m == 1, DivisorSigma[0, n], m > n >= 1, 0, True, A[m - 1, n] - A[m - 1, m - 1] A[m - 1, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 65]

Formula

Product_{n>=1} 1 / (1 - a(n)*x^n) = 1 + Sum_{n>=1} x^n / (1 - x^n).
Showing 1-4 of 4 results.