OFFSET
1,2
COMMENTS
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
Bernd C. Kellner, On a product of certain primes, J. Number Theory, 179 (2017), 126-141; arXiv:1705.04303 [math.NT], 2017.
Bernd C. Kellner and Jonathan Sondow, Power-Sum Denominators, Amer. Math. Monthly, 124 (2017), 695-709; arXiv:1705.03857 [math.NT], 2017.
Bernd C. Kellner and Jonathan Sondow, On Carmichael and polygonal numbers, Bernoulli polynomials, and sums of base-p digits, Integers 21 (2021), #A52, 21 pp.; arXiv:1902.10672 [math.NT], 2019.
FORMULA
EXAMPLE
For p = 2 and 3, the sum of the base p digits of 6 is 1+1+0 = 2 >= 2 and 2+0 = 2 < 3, respectively, so a(6) = 3.
MAPLE
f:= n -> convert(select(p -> convert(convert(n, base, p), `+`)<p,
numtheory:-factorset(n)), `*`):map(f, [$1..100]); # Robert Israel, Apr 26 2020
MATHEMATICA
SD[n_, p_] := If[n < 1 || p < 2, 0, Plus @@ IntegerDigits[n, p]];
LP[n_] := Transpose[FactorInteger[n]][[1]];
DD3[n_] := Times @@ Select[LP[n], SD[n, #] < # &];
Table[DD3[n], {n, 1, 100}]
PROG
(Python)
from math import prod
from sympy.ntheory import digits
from sympy import primefactors as pf
def a(n): return prod(p for p in pf(n) if sum(digits(n, p)[1:]) < p)
print([a(n) for n in range(1, 85)]) # Michael S. Branicky, Jul 03 2022
CROSSREFS
KEYWORD
AUTHOR
Bernd C. Kellner and Jonathan Sondow, Feb 25 2019
STATUS
approved