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.

A141262 Mancala numbers that are prime numbers.

Original entry on oeis.org

3, 5, 11, 17, 29, 41, 47, 59, 101, 107, 131, 149, 173, 191, 239, 257, 281, 359, 401, 509, 569, 647, 839, 929, 1277, 1427, 1487, 1847, 1931, 2039, 2339, 2579, 2939, 4451, 4457, 4799, 4931, 5231, 5381, 5717, 5741, 6029, 6317, 6833, 7451, 7547, 7901, 9011, 9437
Offset: 1

Views

Author

Reinhard Zumkeller, Jun 21 2008

Keywords

Comments

Intersection of A007952 and A000040.

Crossrefs

Programs

  • Mathematica
    f[n_] := Fold[#2*Floor[#1/#2 + 1] &, n, Reverse@ Range[n - 1]]; a007952=Array[f, 170] ;Select[a007952,PrimeQ] (* James C. McMahon, Jul 19 2025 *)