A247395 The smallest numbers of every class in a classification of positive numbers (see comment).
1, 2, 4, 10, 26, 50, 122, 170, 290, 362, 530, 842, 962, 1370, 1682, 1850, 2210, 2810, 3482, 3722, 4490, 5042, 5330, 6242, 6890, 7922, 9410, 10202, 10610, 11450, 11882, 12770, 16130, 17162, 18770, 19322, 22202, 22802, 24650, 26570, 27890, 29930, 32042, 32762
Offset: 0
Links
- Indranil Ghosh, Table of n, a(n) for n = 0..1000
- Vladimir Shevelev, A classification of the positive integers over primes
Programs
-
Mathematica
Table[If[n>2, Prime[n - 1]^2 + 1, 2^n], {n, 0, 43}] (* Indranil Ghosh, Mar 08 2017 *)
-
PARI
a(n)=if(n>2, (prime(n-1))^2 + 1, 2^n) \\ Charles R Greathouse IV, Sep 17 2014
Formula
For n>=3, a(n) = (prime(n-1))^2 + 1.
Extensions
More terms from Peter J. C. Moses, Sep 16 2014
Comments