Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Search: a363635 -id:a363635
     Sort: relevance | references | number | modified | created      Format: long | short | data
Indices of numbers of the form k^2+1, k >= 0, that can be written as a product of smaller numbers of that same form.
+10
8
0, 3, 7, 13, 17, 18, 21, 31, 38, 43, 47, 57, 68, 73, 91, 99, 111, 117, 123, 132, 133, 157, 183, 211, 241, 242, 253, 255, 268, 273, 293, 302, 307, 313, 322, 327, 343, 381, 413, 421, 438, 443, 463, 487, 507, 515, 553, 557, 577, 593, 601, 651, 693, 697, 703, 707
OFFSET
1,2
COMMENTS
For the corresponding sequence for numbers of the form k^3+1 instead of k^2+1, the only terms known to me are 0 and 26, with 26^3+1 = (2^3+1)^2*(6^3+1).
LINKS
EXAMPLE
0 is a term because 0^2+1 = 1 equals the empty product.
3 is a term because 3^2+1 = 10 = 2*5 = (1^2+1)*(2^2+1).
38 is a term because 38^2+1 = 1445 = 5*17*17 = (2^2+1)*(4^2+1)^2. (This is the first term that requires more than two factors.)
MATHEMATICA
g[lst_, p_] :=
Module[{t, i, j},
Union[Flatten[Table[t = lst[[i]]; t[[j]] = p*t[[j]];
Sort[t], {i, Length[lst]}, {j, Length[lst[[i]]]}], 1],
Table[Sort[Append[lst[[i]], p]], {i, Length[lst]}]]];
multPartition[n_] :=
Module[{i, j, p, e, lst = {{}}}, {p, e} =
Transpose[FactorInteger[n]];
Do[lst = g[lst, p[[i]]], {i, Length[p]}, {j, e[[i]]}]; lst];
output = Join[{0}, Flatten[Position[Table[
test = Sqrt[multPartition[n^2 + 1][[2 ;; All]] - 1];
Count[AllTrue[#, IntegerQ] & /@ test, True] > 0
, {n, 707}], True]]]
(* David Trimas, Jul 23 2023 *)
CROSSREFS
Sequences that list those terms (or their indices or some other key) of a given sequence that are products of smaller terms of the same sequence (in other words, the nonprimitive terms of the multiplicative closure of the sequence):
this sequence (A002522),
KEYWORD
nonn
AUTHOR
STATUS
approved
Lucky numbers that are products of smaller lucky numbers.
+10
2
1, 9, 21, 49, 63, 75, 93, 99, 105, 111, 129, 135, 169, 189, 195, 201, 219, 231, 237, 259, 261, 273, 297, 357, 399, 429, 477, 483, 489, 495, 511, 553, 559, 579, 615, 621, 645, 651, 693, 723, 729, 735, 777, 801, 805, 819, 855, 867, 897, 903, 925, 931, 957, 961
OFFSET
1,2
EXAMPLE
1 is a term because it is a lucky number and equals the empty product.
21 is a term because 21 = 3*7 and both 21 and the two factors 3 and 7 are lucky numbers.
729 is a term because 729 = 9*9*9 and both 729 and 9 are lucky numbers. (This is the first term that requires more than two factors.)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved

Search completed in 0.005 seconds