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.

A081424 Class 5- primes (for definition see A005109).

This page as a plain text file.
%I A081424 #8 Sep 22 2012 11:26:27
%S A081424 283,359,557,659,941,1109,1129,1223,1433,1663,1669,1693,1787,1997,
%T A081424 2027,2039,2069,2083,2153,2339,2351,2503,2539,2579,2633,2767,2777,
%U A081424 2803,2837,2999,3229,3581,3761,3767,3779,3989,4127,4157,4231,4253,4283,4297,4513
%N A081424 Class 5- primes (for definition see A005109).
%D A081424 R. K. Guy, Unsolved Problems in Number Theory, A18.
%H A081424 R. J. Mathar, <a href="/A081424/b081424.txt">Table of n, a(n) for n = 1..20000</a>
%t A081424 PrimeFactors[n_Integer] := Flatten[ Table[ #[[1]], {1}] & /@ FactorInteger[n]]; f[n_Integer] := Block[{m = n}, If[m == 0, m = 1, While[ IntegerQ[m/2], m /= 2]; While[ IntegerQ[m/3], m /= 3]]; Apply[Times, PrimeFactors[m] - 1]]; ClassMinusNbr[n_] := Length[NestWhileList[f, n, UnsameQ, All]] - 3; Prime[ Select[ Range[700], ClassMinusNbr[ Prime[ # ]] == 5 &]]
%Y A081424 Cf. A005113, A056637, A005109, A005110, A005111, A005112, A081425, A081426, A081427, A081428, A081429, A081430.
%K A081424 nonn
%O A081424 1,1
%A A081424 _Robert G. Wilson v_, Mar 20 2003