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!)
A358354 a(n) = n for n <= 3. Thereafter a(n) is the least m such that rad(m) = rad(rad(a(n-3)) + rad(a(n-1))) where rad is A007947. 0
1, 2, 3, 4, 8, 5, 7, 9, 16, 27, 6, 32, 25, 11, 13, 12, 17, 30, 18, 23, 53, 59, 82, 15, 74, 78, 93, 167, 35, 64, 169, 24, 128, 45, 21, 529, 38, 3481, 164, 60, 89, 57, 87, 22, 79, 166, 94, 173, 339, 433, 606, 105, 538, 286, 391, 929, 75, 406, 1335, 90, 218, 1553 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Similar sequence to A358093, though here the definition works between a(n-1) and a(n-3) (skipping a(n-2)) so there is no evident parity pattern, and adjacent pairs are not always coprime.
LINKS
EXAMPLE
To find a(4): a(1)=1, a(3)=3 so a(4) is the least m such that rad(n) = rad(rad(1) + rad(3)) = rad(4) = 2. Since 2 has occurred already, a(4) = 4.
MATHEMATICA
nn = 62; c[_] = False; p[_] = q[_] = 1; f[n_] := Times @@ FactorInteger[n][[All, 1]]; Array[Set[{a[#], c[#]}, {#, True}] &, 3]; Array[(q[#]++; p[#]++) &[f[a[#]] ] &, 3]; Set[{i, j, k}, Array[f[a[#]] &, 3]]; Do[s = f[i + k]; If[PrimeQ[s], m = s^p[s]; p[s]++, m = q[s]; While[Nand[! c[m s], PowerMod[s, s, m] == 0], m++]; m *= s]; q[s]++; Set[{a[n], c[m], i, j, k}, {m, True, j, k, s}], {n, 4, nn}]; Array[a, nn] (* Michael De Vlieger, Nov 12 2022 *)
CROSSREFS
Sequence in context: A246273 A082319 A082316 * A182513 A320504 A181799
KEYWORD
nonn
AUTHOR
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 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)