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

A282845 Number of ways to write n as an ordered sum of 6 prime power palindromes (A084092).

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 1, 6, 21, 56, 126, 246, 432, 702, 1077, 1576, 2232, 3072, 4112, 5352, 6801, 8422, 10197, 12102, 14117, 16146, 18177, 20112, 21882, 23382, 24661, 25566, 26136, 26316, 26181, 25560, 24677, 23436, 21981, 20226, 18486, 16536, 14642, 12702, 10962, 9166, 7662, 6222, 5042, 3912, 3096, 2306, 1746, 1236, 921, 600
Offset: 0

Views

Author

Ilya Gutkovskiy, Feb 22 2017

Keywords

Comments

Is there k which satisfies a(n) > 0 for all n > k?

Examples

			a(7) = 6 because we have:
[2, 1, 1, 1, 1, 1]
[1, 2, 1, 1, 1, 1]
[1, 1, 2, 1, 1, 1]
[1, 1, 1, 2, 1, 1]
[1, 1, 1, 1, 2, 1]
[1, 1, 1, 1, 1, 2]
		

Crossrefs

Programs

  • Mathematica
    nmax = 55; CoefficientList[Series[(x + Sum[Boole[PrimePowerQ[k] && PalindromeQ[k]] x^k, {k, 1, nmax}])^6, {x, 0, nmax}], x]

Formula

G.f.: (Sum_{k>=1} x^A084092(k))^6.
Showing 1-1 of 1 results.