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.

A036434 Integers which cannot be written as k+tau(k) for some k.

Original entry on oeis.org

1, 3, 6, 8, 11, 16, 17, 20, 22, 23, 27, 29, 35, 36, 40, 41, 44, 46, 47, 53, 54, 57, 60, 65, 67, 68, 70, 76, 77, 79, 80, 83, 87, 88, 92, 93, 94, 100, 101, 106, 107, 114, 116, 117, 121, 125, 128, 131, 132, 134, 135, 140, 142, 148, 155, 156, 157, 158, 161, 164, 166
Offset: 1

Views

Author

Simon Colton (simonco(AT)cs.york.ac.uk)

Keywords

Comments

Invented by the HR concept formation program.
Indices of 0's in A036431. - Sean A. Irvine, Nov 01 2020

Examples

			None of 1,2,3,4,5,6,7 are such that k+tau(k)=8, so 8 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    m = 200; Complement[Range[m], Table[n + DivisorSigma[0, n], {n, 1, m}]] (* Amiram Eldar, Nov 10 2021 *)
  • PARI
    isok(n) = sum(k=1, n, k+numdiv(k) != n) == n; \\ Michel Marcus, Dec 08 2014