login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A324460 Numbers m > 1 that have a strict s-decomposition. 8
45, 96, 225, 325, 405, 576, 637, 640, 891, 1225, 1377, 1408, 1536, 1701, 1729, 2025, 2541, 2821, 3321, 3751, 3825, 4225, 4608, 4961, 6400, 6517, 6525, 7381, 7840, 8125, 8281, 9216, 9537, 9801, 10625, 10935, 12025, 12288, 12825, 12936, 13125, 13312, 13357 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence contains the primary Carmichael numbers A324316.
The sequence is infinite. If f(x) counts such numbers m below x, then f(x) > 1/11 x^(1/3) - 1/3 for x >= 1.
A number m > 1 has a strict s-decomposition if there exists a decomposition in n proper factors g_k with exponents e_k >= 1 (the factors g_k being strictly increasing but not necessarily coprime) such that
m = g_1^e_1 * ... * g_n^e_n, where s_{g_k}(m) = g_k for all k,
and s_g(m) gives the sum of the base-g digits of m.
A term m has the following properties:
m must have at least 2 factors g_k. If m = g_1^e_1 * g_2^e_2 with exactly two factors, then e_1 + e_2 >= 3.
Each factor g_k of m satisfies the inequalities 1 < g_k < m^(1/(ord_{g_k}(m)+1)) <= sqrt(m), where ord_g(m) gives the maximum exponent e such that g^e divides m.
See Kellner 2019.
LINKS
Bernd C. Kellner, On primary Carmichael numbers, arXiv:1902.11283 [math.NT], 2019.
EXAMPLE
Since 576 = 2^4 * 6^2 with s_2(576) = 2 and s_6(576) = 6, 576 is a member.
MATHEMATICA
s[n_, g_] := If[n < 1 || g < 2, 0, Plus @@ IntegerDigits[n, g]];
HasDecompS[m_] := Module[{E0, EV, G, R, k, n, v},
If[m < 1 || !CompositeQ[m], Return[False]];
G = Select[Divisors[m], s[m, #] == # &];
n = Length[G]; If[n < 2, Return[False]];
E0 = Array[0 &, n]; EV = Array[v, n];
R = Solve[Product[G[[k]]^EV[[k]], {k, 1, n}] == m && EV >= E0, EV, Integers]; Return[R != {}]];
Select[Range[10^4], HasDecompS[#] &]
CROSSREFS
Subsequences are A324316, A324458. Subsequence of A324459.
Sequence in context: A044183 A044564 A320884 * A118090 A350422 A350332
KEYWORD
nonn,base
AUTHOR
Bernd C. Kellner, Feb 28 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 17 21:22 EDT 2024. Contains 371767 sequences. (Running on oeis4.)