Symphony No. 62 (Haydn)

The Symphony No. 62 in D major, Hoboken I/62, is a symphony written by Joseph Haydn for the orchestra at Esterháza in 1780 or 1781, a good length of time after the writing of Symphony No. 61.

Movements

The symphony is scored for flute, two oboes, bassoon, two horns and strings. There are four movements:

  1. Allegro
  2. Allegretto
  3. Menuetto and Trio: Allegretto, 3
    4
  4. Finale: Allegro

The first movement contains material which Haydn reworked from an earlier Sinfonia (Overtura) in D, Hob. Ia/7.[1]

The slow movement has a barcarole-like accompaniment, but instead of the typical Venetian gondolier melody over the top, Haydn presents only melodic fragments, teasing the listener into thinking a melody is near always interrupting before one takes shape.[2]

The trio of the minuet features violins and bassoons and frequently loses the downbeat, a trick Haydn would later play to greater effect in the corresponding trio of his Oxford Symphony.[2]

The finale opens piano with ambiguous tonality for the first six measures before the full tutti firmly establishes D major forte in the seventh bar.[3] The finale proceeds in Italian style. The second theme group contains Lombard rhythms which are worked extensively in the development.[2] The ambiguous tonality returns for the six measures of the recapitulation, this time accentuated by counterpoint,[3] before D major returns and symphony drives towards its conclusion.

L.P. Burstein has noted Haydn's use of the VII chord and the VII → V progression in the fourth movement.[4]

gollark: >>backups
gollark: tio!debug
gollark: Yes, thanks TIOpy?
gollark: ```python#!/usr/bin/env python3import subprocess, os, os.path, sys, argparse, datetimetimestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S")print(timestamp)parser = argparse.ArgumentParser(description="do backups, probably")parser.add_argument("--encrypt", "-E", help="store backup in encrypted folder (please make sure it's unlocked)", action="store_true")parser.add_argument("--no-incremental", "-n", help="don't do incremental backup", action="store_true")parser.add_argument("--save_as", "-a", help="back up under different name")parser.add_argument("dir", help="directory to backup")args = parser.parse_args()incremental = not args.no_incrementalprint(args)srcdir = os.path.abspath(args.dir)outdir = os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), "encrypted/backups" if args.encrypt else "backups")safepath = (args.save_as or srcdir).lstrip("/").replace("/", "-").replace("_", "-")outpath = os.path.join(outdir, f"{safepath}_{timestamp}{'_incr' if incremental else ''}.tar.zst")snapshot = os.path.join(outdir, f"{safepath}.snapshot")snapargs = ["-g", snapshot] if incremental else []print(srcdir, outdir, outpath)tarproc = subprocess.Popen(["tar", "-c", "-v", "-C", os.path.dirname(srcdir), os.path.basename(srcdir)] + snapargs, stdout=subprocess.PIPE)zstproc = subprocess.Popen(["zstd", "-10", "-T0", "-o", outpath], stdin=tarproc.stdout)def assert_proc(x): if x.wait() != 0: print(f"warning: {x.args} failed")assert_proc(tarproc)assert_proc(zstproc)```efficiency™
gollark: Wow, I really love having to use `grep` to find an option in `--help`!

References

  1. Braunstein, Joseph (Winter 1965 – Winter 1966). "Joseph Haydn: Trumpet Concerto et al. (review of published scores)". Notes. Second Series. 22 (2): 974–975. JSTOR 895006.
  2. Brown, A. Peter, The Symphonic Repertoire (Volume 2) (Bloomington and London: Indiana University Press, 2002) (ISBN 025333487X), pp. 183–84.
  3. Rosen, Charles The Classical Style: Haydn, Mozart, Beethoven (New York: W. W. Norton, 1997), pp. 113–14.
  4. Burstein, L. Poundie (October 1998). "Surprising Returns: The VII in Beethoven's Op. 18 No. 3, and Its Antecedents in Haydn". Music Analysis. Blackwell Publishing. 17 (3): 295–312. doi:10.2307/854418. JSTOR 854418.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.