OFFSET
0,2
COMMENTS
Let s_b(n) denote the sum of digits of a positive integer n when written in integer base b. It follows from Theorem 1.1 in Cilleruelo link that for any base b>=2, s_b(A101686(n)) > 2*log(n)/(30*log(b)) holds on a set of positive integers n of asymptotic density 1.
LINKS
Shreyansh Jaiswal, Table of n, a(n) for n = 0..1000
Javier Cilleruelo, Florian Luca, Juanjo Rué, and Ana Zumalacárregui, On the sum of digits of some sequences of integers, Open Mathematics, Vol. 11, No. 1 (2013), pp. 188-195.
EXAMPLE
a(5) = 10 because A101686(5) = 44200, and 4 + 4 + 2 = 10.
MATHEMATICA
a[n_] := DigitSum[Abs[Pochhammer[1 + I, n]]^2]; Array[a, 56, 0] (* Amiram Eldar, Mar 24 2026 *)
PROG
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Shreyansh Jaiswal, Mar 24 2026
STATUS
approved
