A115020 Count backwards from 100 in steps of 7.
100, 93, 86, 79, 72, 65, 58, 51, 44, 37, 30, 23, 16, 9, 2
Offset: 0
References
- Sharon Fish, "Alzheimer's: Caring for Your Loved One, Caring for Yourself", Wheaton, Illinois: Harold Shaw Publishers, 1996, p. 34
Links
- Max Hayman, Two minute clinical test for measurement of intellectual impairment in psychiatric disorders, Arch. Neurpsych. 47:3 (1942), pp. 454-464.
- Tanya Khovanova, Non Recursions
- Robert Thomas Manning, The serial sevens test, Arch Intern Med. 142:6 (1982), p. 1192.
- Wikipedia, Serial sevens
Crossrefs
First fifteen terms of A017005 backwards.
Programs
-
Mathematica
Range[100, 2, -7] (* Harvey P. Dale, Apr 11 2014 *)
-
PARI
a(n)=100-7*n \\ Charles R Greathouse IV, Feb 25 2019
-
Scala
(0 to 14).map(100 - 7 * ) // _Alonso del Arte, May 09 2019
Formula
a(n) = 100 - 7n.
Comments