cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A119846 Distinct values in A119842, in order of appearance.

Original entry on oeis.org

1, 0, 2, 6, 14, 22, 252, 5, 92, 17526, 324, 2916, 422, 9278038, 411126, 23694308, 2074, 8716, 1186593143406, 47570, 11395487424, 918166, 10754, 789632365568454684, 343234, 1164751580868, 42, 917581820575340, 1914786011328142, 58202, 17423496
Offset: 1

Views

Author

Antti Karttunen, Jun 04 2006

Keywords

Crossrefs

a(n) = A119842(A119845(n)).

Programs

  • Mathematica
    b[s_, t_] := b[s, t] = If[Length[s] < 1, 1, Sum[If[Mod[PrimeOmega[x], 2] == 1 - t && Length[Select[s, Mod[#, x] == 0 &]] == 1, b[s~Complement~{x}, 1 - t], 0], {x, s}]]; a[n_] := a[n] = Module[{l, m}, l = Sort[ FactorInteger[n], #1[[2]] > #2[[2]] &]; m = Product[Prime[i]^l[[i]][[2]], {i, 1, Length[l]}]; b[Divisors[m][[2 ;; -2]], Mod[PrimeOmega[m], 2]]]; A119846 = Reap[For[k = 1, k < 6000, k++, If[FreeQ[Array[a, k - 1], a[k]], Print[k, " ", a[k]]; Sow[a[k]]]]][[2, 1]] (* Jean-François Alcover, Mar 03 2016, after Alois P. Heinz *)

Extensions

a(16)-a(31) from Alois P. Heinz, Feb 26 2016