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

A280683 Number of ways to write n as an ordered sum of two positive squarefree semiprimes (A006881).

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 2, 0, 0, 2, 2, 0, 2, 3, 2, 1, 2, 4, 0, 0, 2, 6, 2, 0, 2, 4, 4, 1, 4, 5, 4, 0, 4, 8, 6, 2, 0, 5, 4, 4, 4, 6, 4, 0, 4, 8, 10, 0, 2, 4, 6, 3, 6, 9, 4, 3, 6, 14, 8, 2, 4, 5, 8, 3, 10, 8, 4, 0, 8, 12, 4, 4, 4, 8, 6, 8, 12, 11, 6, 2, 10, 12, 12, 4, 8, 12, 12, 5, 12, 10, 4, 6
Offset: 1

Views

Author

Ilya Gutkovskiy, Jan 07 2017

Keywords

Comments

Conjecture: a(n) > 0 for n > 82 (see comment in A006881 from Richard R. Forberg).

Examples

			a(20) = 3 because we have [14, 6], [10, 10] and [6, 14].
		

Crossrefs

Programs

  • Mathematica
    nmax = 106; Rest[CoefficientList[Series[(Sum[MoebiusMu[k]^2 Floor[PrimeOmega[k]/2] Floor[2/PrimeOmega[k]] x^k, {k, 2, nmax}])^2, {x, 0, nmax}], x]]

Formula

G.f.: (Sum_{k>=2} mu(k)^2*floor(bigomega(k)/2)*floor(2/bigomega(k))*x^k)^2, where mu(k) is the Moebius function (A008683) and bigomega(k) is the number of prime divisors of k counted with multiplicity (A001222).
a(n) = Sum_{k=1..n-1} c(k) * c(n-k), where c = A280710. - Wesley Ivan Hurt, Jan 07 2024

A282135 Expansion of (Sum_{k = p*q, p prime, q prime} x^k)^3.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 3, 3, 4, 6, 6, 3, 9, 9, 12, 12, 6, 10, 15, 18, 16, 12, 12, 21, 27, 27, 21, 18, 24, 30, 36, 36, 25, 27, 36, 49, 48, 36, 36, 51, 51, 54, 57, 66, 63, 42, 57, 75, 72, 66, 51, 69, 78, 79, 90, 102, 73, 75, 84, 117, 126, 84, 75, 105, 123, 121, 114, 120, 124, 102, 117, 156, 156, 129
Offset: 1

Views

Author

Ilya Gutkovskiy, Feb 06 2017

Keywords

Comments

Number of ways to write n as an ordered sum of three semiprimes (A001358).
Conjecture: a(n) > 0 for n > 15.

Examples

			a(14) = 3 because we have [6, 4, 4], [4, 6, 4] and [4, 4, 6].
		

Crossrefs

Programs

  • Mathematica
    nmax = 83; Rest[CoefficientList[Series[Sum[Floor[PrimeOmega[k]/2] Floor[2/PrimeOmega[k]] x^k, {k, 2, nmax}]^3, {x, 0, nmax}], x]]

Formula

G.f.: (Sum_{k = p*q, p prime, q prime} x^k)^3.
Showing 1-2 of 2 results.