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.

Showing 1-2 of 2 results.

A203527 a(n) = Product_{1 <= i < j <= n} (A018252(i) + A018252(j)); A018252 = nonprime numbers.

Original entry on oeis.org

1, 5, 350, 529200, 17542980000, 14783258730240000, 511420331138811494400000, 871980665589501641034301440000000, 60150685659205753788492548338089984000000000, 182771197941564481989784945231570147139911680000000000000
Offset: 1

Views

Author

Clark Kimberling, Jan 03 2012

Keywords

Comments

Each term divides its successor, as in A203528. It is conjectured that each term is divisible by the corresponding superfactorial, A000178(n); as in A203529. See A093883 for a guide to related sequences.

Crossrefs

Programs

  • Maple
    b:= proc(n) option remember; local k; if n=1 then 1
          else for k from 1+b(n-1) while isprime(k) do od; k fi
        end:
    a:= n-> mul(mul(b(i)+b(j), i=1..j-1), j=2..n):
    seq(a(n), n=1..10);  # Alois P. Heinz, Jul 23 2017
  • Mathematica
    t = Table[If[PrimeQ[k], 0, k], {k, 1, 100}];
    nonprime = Rest[Union[t]]              (* A018252 *)
    f[j_] := nonprime[[j]]; z = 20;
    v[n_] := Product[Product[f[k] + f[j], {j, 1, k - 1}], {k, 2, n}]
    d[n_] := Product[(i - 1)!, {i, 1, n}]  (* A000178 *)
    Table[v[n], {n, 1, z}]                 (* A203527 *)
    Table[v[n + 1]/v[n], {n, 1, z - 1}]    (* A203528 *)
    Table[v[n]/d[n], {n, 1, 20}]           (* A203529 *)

Extensions

Name edited by Alois P. Heinz, Jul 23 2017

A203528 a(n) = v(n+1)/v(n), where v=A203527.

Original entry on oeis.org

5, 70, 1512, 33150, 842688, 34594560, 1705017600, 68981673600, 3038555520000, 212396207063040, 16628926183833600, 985240084758930000, 61949330611480166400, 6155242080686899200000, 445283762978503737288000
Offset: 1

Views

Author

Clark Kimberling, Jan 03 2012

Keywords

Comments

See A093883 for a discussion and guide to related sequences.

Crossrefs

Programs

  • Mathematica
    t = Table[If[PrimeQ[k], 0, k], {k, 1, 100}];
    nonprime = Rest[Union[t]]              (* A018252 *)
    f[j_] := nonprime[[j]]; z = 20;
    v[n_] := Product[Product[f[k] + f[j], {j, 1, k - 1}], {k, 2, n}]
    d[n_] := Product[(i - 1)!, {i, 1, n}]  (* A000178 *)
    Table[v[n], {n, 1, z}]                 (* A203527 *)
    Table[v[n + 1]/v[n], {n, 1, z - 1}]    (* A203528 *)
    Table[v[n]/d[n], {n, 1, 20}]           (* A203529 *)

Extensions

Definition corrected by Georg Fischer, Nov 26 2021
Showing 1-2 of 2 results.