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.

A343883 Numbers k such that A023896(k) is a multiple of A340179(k).

Original entry on oeis.org

3, 4, 6, 8, 10, 16, 30, 54
Offset: 1

Views

Author

J. M. Bergot and Robert Israel, May 02 2021

Keywords

Comments

Conjecture: there are only 8 terms.

Examples

			a(6) = 16 is a term because A023896(16) = 64 is a multiple of A340179(16) = 32.
		

Crossrefs

Programs

  • Maple
    filter:= proc(n) local S,s,t;
      S:= select(t -> igcd(t,n)=1, [$1..n-1]);
      s:= nops(S)*n/2;
      s mod add(s mod t,t=S) = 0;
    end proc:
    select(filter, [$3..1000]);