login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A165722
Positive integers k such that the sum of decimal digits of (16^k - 1) equals 6*k.
2
1, 2, 3, 4, 5, 6, 7, 10, 12, 13, 14, 17, 18, 23, 37, 43, 46, 60, 119, 183, 223
OFFSET
1,2
COMMENTS
Integers k such that A007953(16^k - 1) = A008588(k). - Iain Fox, Nov 22 2017
Conjecture: For k > 223, digsum(16^k - 1) < 6*k. This would mean that no further terms exist in the sequence. - Iain Fox, Nov 22 2017
No other terms below 10^6. - Iain Fox, Nov 25 2017
For all a(n), 2*a(n) is in A294652. - Iain Fox, Dec 02 2017
EXAMPLE
For k=1, 16-1 is 15 with sum of digits 6, so 1 is a term.
For k=2, 16^2-1 is 255 with sum of digits 12, so 2 is a term.
MATHEMATICA
Select[Range[250], 6#==Total[IntegerDigits[16^#-1]]&] (* Harvey P. Dale, Nov 13 2012 *)
PROG
(PARI) is(n) = 6*n == sumdigits(16^n-1) \\ Iain Fox, Nov 24 2017
CROSSREFS
Sequence in context: A165805 A319975 A307625 * A082400 A072993 A018444
KEYWORD
base,more,nonn
AUTHOR
Max Alekseyev, Sep 24 2009
STATUS
approved