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”).

A294652
Positive integers k such that the sum of decimal digits of (4^k - 1) equals 3*k.
1
1, 2, 3, 4, 6, 7, 8, 10, 12, 13, 14, 20, 23, 24, 25, 26, 27, 28, 34, 36, 41, 46, 65, 71, 74, 83, 86, 89, 92, 111, 120, 235, 238, 253, 297, 366, 446
OFFSET
1,2
COMMENTS
Integers k such that A007953(4^k - 1) = A008585(k).
No other terms below 10^6.
Conjecture: For k > 446, digsum(4^k - 1) < 3*k. This would mean that no further terms exist in the sequence.
If a(n) is even, then a(n)/2 is in A165722.
EXAMPLE
4^2 - 1 is 15 with sum of digits 6, so 2 is a term.
4^3 - 1 is 63 with sum of digits 9, so 3 is a term.
4^5 - 1 is 1023 with sum of digits 6, so 5 is not a term.
MATHEMATICA
Select[Range[2500], 3# == Total[IntegerDigits[4^# - 1]] &] (* G. C. Greubel, Nov 28 2017 *)
PROG
(PARI) is(n) = 3*n == sumdigits(4^n-1)
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Iain Fox, Nov 27 2017
STATUS
approved