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.

A298430 Numbers n such that there are precisely 13 groups of orders n and n + 1.

Original entry on oeis.org

82323, 390446, 622916, 774548, 793827, 876932
Offset: 1

Views

Author

Muniru A Asiru, Jan 19 2018

Keywords

Comments

Equivalently, lower member of consecutive terms of A292896.

Examples

			For n = 82323, A000001(82323) = A000001(82324) = 13.
For n = 390446, A000001(390446) = A000001(390447) = 13.
For n = 622916, A000001(622916) = A000001(622917) = 13.
		

Crossrefs

Cf. A000001. Subsequence of A292896 (Numbers n having precisely 13 groups of order n). Numbers n having precisely k groups of orders n and n+1: A295230 (k=2), A295990 (k=4), A295991 (k=5), A295992 (k=6), A295993 (k=8), A298427 (k=9), A298428 (k=10), A295994 (k=11), A298429 (k=12), this sequence (k=13), A298431 (k=14), A295995 (k=15).

Programs

  • Maple
    with(GroupTheory): for n from 1 to 10^6 do if [NumGroups(n), NumGroups(n+1)] = [13, 13] then print(n); fi; od;

Formula

Sequence is { n | A000001(n) = 13, A000001(n+1) = 13 }.