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.

A178570 Numbers k such that prime(k+1) == 1 (mod (prime(k+2) - prime(k))).

Original entry on oeis.org

2, 3, 5, 7, 13, 20, 24, 26, 28, 30, 31, 32, 36, 41, 43, 49, 52, 62, 64, 67, 69, 73, 77, 81, 83, 86, 87, 89, 103, 105, 109, 116, 121, 129, 135, 142, 144, 148, 152, 156, 158, 159, 163, 168, 171, 173, 182, 190, 192, 196, 206, 208, 212, 215, 217, 219, 223, 225, 231, 234, 236
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Jan 01 2011

Keywords

Examples

			2 is a term because prime(2+1) mod (prime(2+2) - prime(2)) = 5 mod 4 = 1.
		

Crossrefs

Cf. A067185.

Programs

  • Mathematica
    fQ[n_] := Mod[Prime[n+1], Prime[n+2] - Prime[n]] == 1; Select[ Range@ 250, fQ]
  • PARI
    isok(n) = prime(n+1) % (prime(n+2) - prime(n)) == 1; \\ Michel Marcus, Jan 31 2019

A069468 Number of ways writing n! as a product of some other numbers which has no digits equal to 1.

Original entry on oeis.org

0, 1, 3, 17, 68, 807, 5310, 121536, 2775630, 48782385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
Offset: 1

Views

Author

Labos Elemer, Mar 25 2002

Keywords

Examples

			n=4, 4!=24, A067734(24)=17 and the 17 solutions are as follows: {38,46,64,83,226,234,243,262,324,342,423,432,622,2223,2232,2322,3222}.
		

Crossrefs

Formula

a(n) = A067734(n!) = A067734(A000142(n)).
a(n) = 0 if n>10 since A068184 and A067185 are complete sequences.

Extensions

More terms from Max Alekseyev, Sep 19 2009
Showing 1-2 of 2 results.