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.

A292740 Indices k such that A292547(k) = 0.

Original entry on oeis.org

2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70
Offset: 1

Views

Author

Vaclav Kotesovec, Sep 22 2017

Keywords

Comments

Complement of A290276.
Conjecture: for k > 212594 there are no more terms in this sequence (tested for k < 63000000).

Examples

			3 is in the sequence because A292547(3) = 0
8 is not in the sequence because A292547(8) = -1
201254 is in the sequence because A292547(201254) = 0
212594 is in the sequence because A292547(212594) = 0
		

Crossrefs

Programs

  • Mathematica
    With[{nn = 200}, -1 + Position[#, 0][[All, 1]] &@ CoefficientList[ Series[Product[1 + x^((2 k - 1)^3), {k, 1, Floor[nn^(1/3)/2] + 1}], {x, 0, nn}], x]] (* Michael De Vlieger, Sep 22 2017, after Vaclav Kotesovec at A292547 *)