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.

A075027 Numbers k such that d(k-1) < d(k) > d(k+1), d = A000005.

Original entry on oeis.org

4, 6, 8, 10, 12, 16, 18, 20, 24, 28, 30, 32, 36, 40, 42, 48, 50, 52, 54, 56, 60, 64, 66, 68, 70, 72, 78, 80, 84, 88, 90, 92, 96, 100, 102, 108, 110, 112, 114, 120, 124, 126, 128, 130, 132, 138, 140, 144, 150, 152, 154, 156, 160, 162, 165, 168, 170, 174, 176, 180
Offset: 1

Views

Author

Amarnath Murthy, Sep 02 2002

Keywords

Comments

Obviously every term is composite.
The average of each twin prime pair is a term.
a(55) = 165 is the first odd term; A323379 lists all odd terms. - Jon E. Schoenfield, Sep 26 2021

Examples

			10 is a term since d(9) = 3, d(10) = 4, d(11) = 2 and 3 < 4 > 2.
		

Crossrefs

Programs

  • Maple
    q:= k-> (d-> d(k-1)d(k+1))(numtheory[tau]):
    select(q, [$1..200])[];  # Alois P. Heinz, Sep 28 2021
  • Mathematica
    #[[2,1]]&/@Select[Partition[Table[{n,DivisorSigma[0,n]},{n,200}],3,1], #[[1,-1]]<#[[2,-1]]>#[[3,-1]]&] (* Harvey P. Dale, Oct 09 2011 *)

Extensions

More terms from Jason Earls, Sep 04 2002