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.

A329493 (Sum of digits of (2^n - 11)) - n.

Original entry on oeis.org

1, -2, 2, 2, 3, -3, -5, 1, 5, 5, 6, 9, 7, -5, -1, 8, 9, 3, 10, 25, 11, 2, 12, 6, 13, 10, 5, 14, 24, 27, 25, 22, 26, 17, 27, 30, 19, 7, 11, 20, 12, 15, 22, 19, 23, 14, 24, 27, 25, 22, 26, 35, 27, 21, 10, 16, 20, 11, 30, 33, 22, 19, 41, 41, 33, 18, -2, 13, 35, 35, 54, 48, 28, 25, 20, 29, 30
Offset: 4

Views

Author

N. J. A. Sloane, Nov 16 2019

Keywords

Comments

Is this ever zero? If not, this would prove that A329492(11) = -1, and that A328882 is never -11. (-11 is the first negative open case.)

Crossrefs

Programs

  • Maple
    f:= proc(n) convert(convert(2^n-11,base,10),`+`)-n end proc:
    map(f, [$4..100]); # Robert Israel, Nov 17 2019
  • Mathematica
    Table[Total[IntegerDigits[2^n-11]]-n,{n,4,90}] (* Harvey P. Dale, Oct 13 2024 *)