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.

A337366 Number of representations of A036691(n) as a sum of 3 nonnegative cubes.

Original entry on oeis.org

1, 0, 1, 1, 2, 1, 1, 2, 1, 4, 6, 3, 8, 8, 14, 7
Offset: 0

Views

Author

Altug Alkan, Aug 25 2020

Keywords

Comments

Conjecture I: a(n) = 0 only for n = 1. That is, any product of first n > 1 composite numbers is a sum of at most 3 positive cubes. For example,
A036691(100) = 2563573191821442299652988946477367093137353211904000000000^3 + 21431289850849406740917647451954098598503667204096000000000^3 + 26409890400237152457638095665189553529771293409280000000000^3.
Conjecture II: For any term t >= 1, there are only finitely many values of n such that a(n) = t.

Examples

			a(4) = 2 because A036691(4) = 1728 = 12^3 = 6^3 + 8^3 + 10^3.
		

Crossrefs

Programs

  • Mathematica
    A036691 = Join[{1}, FoldList[Times, Select[Range[20], CompositeQ]]];
    Table[Length@ PowersRepresentations[A036691[[n]], 3, 3], {n, 10}] (* Robert Price, Sep 08 2020 *)

Formula

a(n) = A025447(A036691(n)).