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]

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

Original entry on oeis.org

1, 2, 0, 3, -1, -1, -1, 9, 1, -7, 0, 4, -1, -19, 2, 94, -2, -57, 2, 81, -4, -186, 3, 226, 3, -632, -2, 1040, 1, -2060, -15, 10975, 17, -7720, -1, 13980, 9, -27595, -18, 50432, -10, -97582, 24, 191827, -17, -364695, 27, 580609, -37, -1338741, 45, 2658068, -11, -4909146, -98
Offset: 1

Views

Author

Ilya Gutkovskiy, May 11 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, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 55]

Formula

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

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.

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

Original entry on oeis.org

1, 0, 1, 0, 2, -3, 4, -4, 4, -10, 14, -25, 30, -48, 48, -86, 128, -192, 286, -470, 578, -1000, 1386, -2423, 3172, -5198, 7102, -11994, 16414, -25820, 38056, -61444, 86658, -141564, 203396, -324640, 475536, -767110, 1100728, -1810752, 2601166, -4118166, 6114666
Offset: 1

Views

Author

Ilya Gutkovskiy, May 12 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 - 1, n - m + 1]]; a[n_] := A[n, n]; a /@ Range[1, 43]
Showing 1-4 of 4 results.